Association Rule Mining is used when you want to find an association between different objects in a set, find frequent patterns in any information repository. It generates a set of rules called Association Rules. In simple words, it gives you output as rules in form if this then that.
Consider the following example:
We have a set of transaction data, numbered 1 to 5. Each transaction shows items bought in that transaction. You can see that Diaper is bought with Beer in three transactions. Similarly, Bread is bought with milk in three transactions making them both frequent item sets. Association rules are given in the form as below:
The part before => is referred to as if (Antecedent) and the part after => is referred to as then (Consequent).
Where A and B are sets of items in the transaction data. A and B are disjoint sets.
For example. if we have this rule:
20% transaction show Anti-virus software is bought with purchase of a Computer;
60% of customers who purchase Anti-virus software is bought with purchase of a Computer
Basic concepts of Association Rule Mining:
Itemset: Collection of one or more items. K-item-set means a set of k items.
Support Count: Frequency of occurrence of an item-set.
Support (s): Fraction of transactions that contain the item-set ‘X’.
Confidence (c): For a rule A=>B Confidence shows the percentage in which B is with A. The number of transactions with both A and B divided by the total number of transactions having A.
Lift: Lift gives the correlation between A and B in the rule A=>B. Correlation shows how one item-set A effects the item-set B.
If the rule had a lift of 1,then A and B are independent and no rule can be derived from them.
If the lift is > 1, then A and B are dependent on each other, and the degree of which is given by ift value.
If the lift is < 1, then presence of A will have negative effect on B.
Association Rule Mining is viewed as a two-step approach:
Frequent Itemset Generation: find all frequent item-sets with support >= pre-determined min_support count.
Rule Generation: list all Association Rules from frequent item-sets. Calculate Support and Confidence for all rules.
Frequent Itemset Generation is the most computationally expensive step because it requires a full database scan.
For this APRIORI Algorithm is used. It states:
“Any subset of a frequent itemset must also be frequent. In other words, no superset of an infrequent itemset must be generated or tested”.
The following figure shows how much APRIORI helps to reduce the number of sets to be generated:
If item-set {a,b} is infrequent then we do not need to take into account all its super-sets.
Let’s understand this by an example. In the following example, you will see why APRIORI is an effective algorithm and also generate strong association rules step by step.
Here APRIORI plays its role and helps reduce the number of the Candidate list, and useful rules are generated at the end. In the following steps, you will see how we reach the end of Frequent Itemset generation, that is the first step of Association rule mining.
Next step will be to list all frequent itemsets. You will take the last non-empty Frequent Itemset, which in this example is L2={I1, I2},{I2, I3}. Then make all non-empty subsets of the item-sets present in that Frequent Item-set List. Follow along as shown in below illustration:
You can see above there are four strong rules. For example, take I2=>I3 having confidence equal to 75% tells that 75% of people who bought I2 also bought I3.
Let’s get on to the code.
We will use the dataset df_join that contains design and test smells associated to classes of several projects, on more releases.
NameTag: the name of project’s version.
HashCommit: the hash of the commit associated to that release.
Date: the date in which the release is committed.
Project Name: the name of the project.
Package Name: package that contains the class having design/test smells.
Type Name: the class having design/test smells.
Cause of the smell: a description of the cause of that design smell.
ClassName: the concatenation between Package Name and Type Name.
Test suite: the class of test associated to production code.
Test smells: what test smells betweenar1, et1, it1, gf1, se1, mg1, ro1 presents that class of test.
Smells: contains an union between the design and test smells affecting that class.
#install and load package arules
#install.packages("arules")
library(arules)
## Caricamento del pacchetto richiesto: Matrix
##
## Caricamento pacchetto: 'arules'
## I seguenti oggetti sono mascherati da 'package:base':
##
## abbreviate, write
#install and load arulesViz
#install.packages("arulesViz")
library(arulesViz)
#install and load tidyverse
#install.packages("tidyverse")
library(tidyverse)
## -- Attaching packages --------------------------------------- tidyverse 1.3.1 --
## v ggplot2 3.3.3 v purrr 0.3.4
## v tibble 3.1.2 v dplyr 1.0.6
## v tidyr 1.1.3 v stringr 1.4.0
## v readr 1.4.0 v forcats 0.5.1
## -- Conflicts ------------------------------------------ tidyverse_conflicts() --
## x tidyr::expand() masks Matrix::expand()
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
## x tidyr::pack() masks Matrix::pack()
## x dplyr::recode() masks arules::recode()
## x tidyr::unpack() masks Matrix::unpack()
#install and load readxml
#install.packages("readxml")
library(readxl)
#install and load knitr
#install.packages("knitr")
library(knitr)
#load ggplot2 as it comes in tidyverse
library(ggplot2)
#install and load lubridate
#install.packages("lubridate")
library(lubridate)
##
## Caricamento pacchetto: 'lubridate'
## I seguenti oggetti sono mascherati da 'package:arules':
##
## intersect, setdiff, union
## I seguenti oggetti sono mascherati da 'package:base':
##
## date, intersect, setdiff, union
#install and load plyr
#install.packages("plyr")
library(plyr)
## ------------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## ------------------------------------------------------------------------------
##
## Caricamento pacchetto: 'plyr'
## I seguenti oggetti sono mascherati da 'package:dplyr':
##
## arrange, count, desc, failwith, id, mutate, rename, summarise,
## summarize
## Il seguente oggetto è mascherato da 'package:purrr':
##
## compact
library(dplyr)
Use read_csv(path to file) to read the dataset df_join.
df_join <- read.csv("df_join.csv")
df_join
## X NameTag.x HashCommit.x
## 1 1 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 2 2 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 3 3 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 4 4 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 5 5 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 6 6 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 7 7 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 8 8 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 9 9 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 10 10 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 11 11 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 12 12 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 13 13 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 14 14 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 15 15 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 16 16 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 17 17 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 18 18 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 19 19 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 20 20 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 21 21 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 22 22 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 23 23 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 24 24 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 25 25 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 26 26 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 27 27 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 28 28 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 29 29 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 30 30 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 31 31 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 32 32 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 33 33 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 34 34 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 35 35 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 36 36 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 37 37 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 38 38 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 39 39 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 40 40 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 41 41 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 42 42 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 43 43 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 44 44 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 45 45 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 46 46 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 47 47 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 48 48 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 49 49 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 50 50 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 51 51 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 52 52 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 53 53 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 54 54 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 55 55 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 56 56 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 57 57 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 58 58 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 59 59 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 60 60 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 61 61 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 62 62 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 63 63 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 64 64 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 65 65 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 66 66 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 67 67 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 68 68 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 69 69 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 70 70 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 71 71 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 72 72 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 73 73 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 74 74 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 75 75 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 76 76 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 77 77 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 78 78 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 79 79 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 80 80 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 81 81 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 82 82 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 83 83 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 84 84 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 85 85 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 86 86 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 87 87 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 88 88 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 89 89 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 90 90 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 91 91 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 92 92 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 93 93 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 94 94 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 95 95 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 96 96 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 97 97 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 98 98 androidannotations-2.5 1742f310c7af613ab9fc1f746a01c7df4d624172
## 99 99 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 100 100 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 101 101 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 102 102 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 103 103 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 104 104 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 105 105 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 106 106 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 107 107 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 108 108 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 109 109 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 110 110 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 111 111 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 112 112 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 113 113 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 114 114 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 115 115 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 116 116 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 117 117 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 118 118 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 119 119 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 120 120 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 121 121 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 122 122 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 123 123 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 124 124 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 125 125 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 126 126 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 127 127 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 128 128 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 129 129 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 130 130 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 131 131 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 132 132 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 133 133 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 134 134 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 135 135 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 136 136 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 137 137 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 138 138 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 139 139 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 140 140 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 141 141 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 142 142 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 143 143 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 144 144 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 145 145 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 146 146 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 147 147 androidannotations-2.4 594e66aa2c93a2a01caa924ae44df4e6629a29b8
## 148 148 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 149 149 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 150 150 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 151 151 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 152 152 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 153 153 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 154 154 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 155 155 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 156 156 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 157 157 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 158 158 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 159 159 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 160 160 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 161 161 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 162 162 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 163 163 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 164 164 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 165 165 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 166 166 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 167 167 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 168 168 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 169 169 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 170 170 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 171 171 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 172 172 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 173 173 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 174 174 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 175 175 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 176 176 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 177 177 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 178 178 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 179 179 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 180 180 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 181 181 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 182 182 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 183 183 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 184 184 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 185 185 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 186 186 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 187 187 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 188 188 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 189 189 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 190 190 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 191 191 androidannotations-2.2-RC2 eede02f6e078297676e7fcada45e48bd477c43d1
## 192 192 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 193 193 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 194 194 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 195 195 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 196 196 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 197 197 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 198 198 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 199 199 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 200 200 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 201 201 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 202 202 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 203 203 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 204 204 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 205 205 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 206 206 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 207 207 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 208 208 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 209 209 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 210 210 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 211 211 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 212 212 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 213 213 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 214 214 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 215 215 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 216 216 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 217 217 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 218 218 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 219 219 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 220 220 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 221 221 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 222 222 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 223 223 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 224 224 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 225 225 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 226 226 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 227 227 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 228 228 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 229 229 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 230 230 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 231 231 androidannotations-2.1.2 8d9cb3447f8bc0b97df2cc4c562b7ef4d80c16ab
## 232 232 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 233 233 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 234 234 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 235 235 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 236 236 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 237 237 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 238 238 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 239 239 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 240 240 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 241 241 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 242 242 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 243 243 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 244 244 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 245 245 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 246 246 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 247 247 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 248 248 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 249 249 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 250 250 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 251 251 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 252 252 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 253 253 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 254 254 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 255 255 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 256 256 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 257 257 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 258 258 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 259 259 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 260 260 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 261 261 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 262 262 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 263 263 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 264 264 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 265 265 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 266 266 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 267 267 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 268 268 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 269 269 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 270 270 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 271 271 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 272 272 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 273 273 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 274 274 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 275 275 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 276 276 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 277 277 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 278 278 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 279 279 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 280 280 androidannotations-2.6 aebbb20bf863a12b0877ea6c2ac64d83f52027c9
## 281 281 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 282 282 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 283 283 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 284 284 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 285 285 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 286 286 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 287 287 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 288 288 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 289 289 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 290 290 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 291 291 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 292 292 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 293 293 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 294 294 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 295 295 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 296 296 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 297 297 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 298 298 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 299 299 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 300 300 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 301 301 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 302 302 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 303 303 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 304 304 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 305 305 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 306 306 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 307 307 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 308 308 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 309 309 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 310 310 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 311 311 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 312 312 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 313 313 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 314 314 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 315 315 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 316 316 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 317 317 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 318 318 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 319 319 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 320 320 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 321 321 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 322 322 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 323 323 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 324 324 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 325 325 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 326 326 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 327 327 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 328 328 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 329 329 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 330 330 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 331 331 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 332 332 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 333 333 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 334 334 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 335 335 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 336 336 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 337 337 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 338 338 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 339 339 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 340 340 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 341 341 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 342 342 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 343 343 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 344 344 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 345 345 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 346 346 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 347 347 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 348 348 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 349 349 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 350 350 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 351 351 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 352 352 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 353 353 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 354 354 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 355 355 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 356 356 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 357 357 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 358 358 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 359 359 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 360 360 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 361 361 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 362 362 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 363 363 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 364 364 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 365 365 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 366 366 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 367 367 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 368 368 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 369 369 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 370 370 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 371 371 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 372 372 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 373 373 androidannotations-2.5.1 f14504fa8684cab7def218ea08cf7e0094067a79
## 374 374 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 375 375 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 376 376 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 377 377 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 378 378 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 379 379 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 380 380 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 381 381 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 382 382 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 383 383 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 384 384 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 385 385 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 386 386 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 387 387 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 388 388 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 389 389 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 390 390 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 391 391 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 392 392 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 393 393 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 394 394 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 395 395 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 396 396 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 397 397 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 398 398 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 399 399 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 400 400 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 401 401 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 402 402 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 403 403 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 404 404 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 405 405 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 406 406 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 407 407 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 408 408 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 409 409 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 410 410 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 411 411 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 412 412 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 413 413 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 414 414 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 415 415 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 416 416 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 417 417 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 418 418 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 419 419 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 420 420 androidannotations-2.7 f51ad5e7940cbbe106056f70033cb28f18406c40
## 421 421 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 422 422 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 423 423 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 424 424 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 425 425 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 426 426 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 427 427 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 428 428 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 429 429 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 430 430 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 431 431 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 432 432 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 433 433 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 434 434 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 435 435 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 436 436 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 437 437 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 438 438 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 439 439 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 440 440 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 441 441 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 442 442 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 443 443 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 444 444 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 445 445 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 446 446 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 447 447 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 448 448 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 449 449 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 450 450 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 451 451 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 452 452 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 453 453 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 454 454 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 455 455 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 456 456 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 457 457 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 458 458 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 459 459 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 460 460 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 461 461 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 462 462 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 463 463 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 464 464 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 465 465 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 466 466 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 467 467 androidannotations-2.7.1 b341012673bab558386b37282c8077e5c0abea53
## 468 468 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 469 469 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 470 470 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 471 471 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 472 472 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 473 473 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 474 474 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 475 475 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 476 476 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 477 477 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 478 478 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 479 479 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 480 480 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 481 481 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 482 482 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 483 483 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 484 484 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 485 485 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 486 486 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 487 487 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 488 488 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 489 489 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 490 490 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 491 491 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 492 492 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 493 493 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 494 494 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 495 495 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 496 496 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 497 497 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 498 498 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 499 499 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 500 500 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 501 501 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 502 502 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 503 503 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 504 504 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 505 505 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 506 506 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 507 507 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 508 508 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 509 509 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 510 510 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 511 511 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 512 512 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 513 513 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 514 514 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 515 515 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 516 516 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 517 517 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 518 518 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 519 519 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 520 520 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 521 521 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 522 522 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 523 523 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 524 524 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 525 525 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 526 526 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 527 527 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 528 528 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 529 529 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 530 530 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 531 531 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 532 532 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 533 533 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 534 534 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 535 535 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 536 536 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 537 537 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 538 538 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 539 539 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 540 540 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 541 541 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 542 542 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 543 543 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 544 544 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 545 545 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 546 546 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 547 547 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 548 548 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 549 549 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 550 550 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 551 551 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 552 552 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 553 553 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 554 554 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 555 555 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 556 556 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 557 557 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 558 558 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 559 559 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 560 560 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 561 561 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 562 562 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 563 563 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 564 564 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 565 565 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 566 566 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 567 567 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 568 568 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 569 569 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 570 570 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 571 571 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 572 572 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 573 573 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 574 574 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 575 575 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 576 576 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 577 577 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 578 578 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 579 579 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 580 580 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 581 581 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 582 582 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 583 583 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 584 584 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 585 585 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 586 586 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 587 587 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 588 588 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 589 589 androidannotations-3.0 eac9629f9ec1d5fcfe7c718d1281735463fec0f5
## 590 590 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 591 591 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 592 592 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 593 593 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 594 594 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 595 595 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 596 596 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 597 597 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 598 598 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 599 599 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 600 600 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 601 601 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 602 602 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 603 603 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 604 604 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 605 605 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 606 606 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 607 607 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 608 608 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 609 609 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 610 610 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 611 611 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 612 612 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 613 613 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 614 614 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 615 615 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 616 616 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 617 617 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 618 618 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 619 619 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 620 620 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 621 621 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 622 622 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 623 623 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 624 624 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 625 625 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 626 626 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 627 627 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 628 628 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 629 629 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 630 630 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 631 631 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 632 632 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 633 633 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 634 634 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 635 635 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 636 636 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 637 637 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 638 638 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 639 639 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 640 640 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 641 641 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 642 642 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 643 643 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 644 644 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 645 645 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 646 646 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 647 647 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 648 648 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 649 649 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 650 650 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 651 651 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 652 652 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 653 653 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 654 654 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 655 655 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 656 656 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 657 657 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 658 658 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 659 659 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 660 660 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 661 661 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 662 662 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 663 663 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 664 664 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 665 665 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 666 666 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 667 667 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 668 668 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 669 669 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 670 670 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 671 671 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 672 672 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 673 673 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 674 674 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 675 675 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 676 676 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 677 677 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 678 678 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 679 679 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 680 680 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 681 681 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 682 682 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 683 683 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 684 684 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 685 685 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 686 686 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 687 687 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 688 688 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 689 689 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 690 690 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 691 691 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 692 692 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 693 693 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 694 694 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 695 695 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 696 696 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 697 697 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 698 698 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 699 699 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 700 700 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 701 701 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 702 702 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 703 703 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 704 704 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 705 705 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 706 706 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 707 707 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 708 708 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 709 709 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 710 710 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 711 711 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 712 712 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 713 713 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 714 714 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 715 715 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 716 716 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 717 717 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 718 718 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 719 719 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 720 720 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 721 721 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 722 722 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 723 723 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 724 724 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 725 725 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 726 726 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 727 727 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 728 728 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 729 729 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 730 730 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 731 731 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 732 732 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 733 733 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 734 734 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 735 735 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 736 736 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 737 737 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 738 738 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 739 739 androidannotations-3.0.1 eb91a4a2a4ce8a24f52523b87089bddf33544b20
## 740 740 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 741 741 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 742 742 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 743 743 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 744 744 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 745 745 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 746 746 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 747 747 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 748 748 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 749 749 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 750 750 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 751 751 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 752 752 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 753 753 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 754 754 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 755 755 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 756 756 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 757 757 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 758 758 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 759 759 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 760 760 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 761 761 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 762 762 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 763 763 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 764 764 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 765 765 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 766 766 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 767 767 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 768 768 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 769 769 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 770 770 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 771 771 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 772 772 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 773 773 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 774 774 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 775 775 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 776 776 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 777 777 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 778 778 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 779 779 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 780 780 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 781 781 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 782 782 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 783 783 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 784 784 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 785 785 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 786 786 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 787 787 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 788 788 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 789 789 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 790 790 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 791 791 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 792 792 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 793 793 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 794 794 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 795 795 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 796 796 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 797 797 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 798 798 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 799 799 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 800 800 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 801 801 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 802 802 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 803 803 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 804 804 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 805 805 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 806 806 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 807 807 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 808 808 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 809 809 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 810 810 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 811 811 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 812 812 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 813 813 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 814 814 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 815 815 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 816 816 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 817 817 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 818 818 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 819 819 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 820 820 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 821 821 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 822 822 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 823 823 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 824 824 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 825 825 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 826 826 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 827 827 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 828 828 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 829 829 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 830 830 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 831 831 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 832 832 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 833 833 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 834 834 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 835 835 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 836 836 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 837 837 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 838 838 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 839 839 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 840 840 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 841 841 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 842 842 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 843 843 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 844 844 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 845 845 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 846 846 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 847 847 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 848 848 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 849 849 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 850 850 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 851 851 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 852 852 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 853 853 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 854 854 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 855 855 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 856 856 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 857 857 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 858 858 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 859 859 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 860 860 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 861 861 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 862 862 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 863 863 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 864 864 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 865 865 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 866 866 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 867 867 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 868 868 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 869 869 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 870 870 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 871 871 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 872 872 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 873 873 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 874 874 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 875 875 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 876 876 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 877 877 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 878 878 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 879 879 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 880 880 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 881 881 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 882 882 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 883 883 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 884 884 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 885 885 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 886 886 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 887 887 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 888 888 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 889 889 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 890 890 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 891 891 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 892 892 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 893 893 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 894 894 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 895 895 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 896 896 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 897 897 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 898 898 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 899 899 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 900 900 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 901 901 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 902 902 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 903 903 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 904 904 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 905 905 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 906 906 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 907 907 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 908 908 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 909 909 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 910 910 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 911 911 androidannotations-3.1 d41226f0d976698ab9af0ba0f514bbfa19e89106
## 912 912 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 913 913 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 914 914 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 915 915 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 916 916 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 917 917 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 918 918 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 919 919 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 920 920 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 921 921 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 922 922 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 923 923 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 924 924 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 925 925 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 926 926 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 927 927 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 928 928 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 929 929 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 930 930 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 931 931 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 932 932 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 933 933 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 934 934 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 935 935 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 936 936 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 937 937 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 938 938 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 939 939 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 940 940 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 941 941 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 942 942 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 943 943 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 944 944 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 945 945 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 946 946 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 947 947 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 948 948 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 949 949 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 950 950 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 951 951 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 952 952 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 953 953 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 954 954 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 955 955 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 956 956 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 957 957 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 958 958 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 959 959 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 960 960 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 961 961 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 962 962 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 963 963 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 964 964 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 965 965 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 966 966 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 967 967 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 968 968 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 969 969 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 970 970 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 971 971 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 972 972 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 973 973 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 974 974 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 975 975 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 976 976 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 977 977 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 978 978 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 979 979 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 980 980 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 981 981 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 982 982 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 983 983 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 984 984 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 985 985 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 986 986 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 987 987 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 988 988 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 989 989 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 990 990 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 991 991 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 992 992 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 993 993 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 994 994 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 995 995 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 996 996 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 997 997 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 998 998 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 999 999 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1000 1000 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1001 1001 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1002 1002 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1003 1003 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1004 1004 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1005 1005 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1006 1006 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1007 1007 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1008 1008 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1009 1009 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1010 1010 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1011 1011 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1012 1012 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1013 1013 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1014 1014 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1015 1015 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1016 1016 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1017 1017 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1018 1018 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1019 1019 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1020 1020 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1021 1021 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1022 1022 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1023 1023 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1024 1024 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1025 1025 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1026 1026 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1027 1027 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1028 1028 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1029 1029 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1030 1030 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1031 1031 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1032 1032 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1033 1033 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1034 1034 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1035 1035 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1036 1036 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1037 1037 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1038 1038 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1039 1039 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1040 1040 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1041 1041 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1042 1042 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1043 1043 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1044 1044 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1045 1045 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1046 1046 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1047 1047 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1048 1048 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1049 1049 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1050 1050 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1051 1051 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1052 1052 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1053 1053 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1054 1054 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1055 1055 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1056 1056 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1057 1057 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1058 1058 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1059 1059 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1060 1060 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1061 1061 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1062 1062 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1063 1063 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1064 1064 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1065 1065 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1066 1066 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1067 1067 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1068 1068 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1069 1069 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1070 1070 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1071 1071 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1072 1072 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1073 1073 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1074 1074 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1075 1075 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1076 1076 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1077 1077 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1078 1078 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1079 1079 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1080 1080 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1081 1081 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1082 1082 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1083 1083 androidannotations-3.1.1 e8a55b122468b1e11d9571266951b9e19648fb19
## 1084 1084 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1085 1085 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1086 1086 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1087 1087 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1088 1088 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1089 1089 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1090 1090 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1091 1091 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1092 1092 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1093 1093 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1094 1094 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1095 1095 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1096 1096 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1097 1097 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1098 1098 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1099 1099 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1100 1100 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1101 1101 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1102 1102 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1103 1103 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1104 1104 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1105 1105 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1106 1106 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1107 1107 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1108 1108 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1109 1109 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1110 1110 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1111 1111 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1112 1112 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1113 1113 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1114 1114 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1115 1115 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1116 1116 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1117 1117 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1118 1118 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1119 1119 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1120 1120 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1121 1121 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1122 1122 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1123 1123 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1124 1124 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1125 1125 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1126 1126 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1127 1127 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1128 1128 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1129 1129 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1130 1130 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1131 1131 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1132 1132 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1133 1133 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1134 1134 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1135 1135 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1136 1136 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1137 1137 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1138 1138 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1139 1139 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1140 1140 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1141 1141 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1142 1142 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1143 1143 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1144 1144 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1145 1145 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1146 1146 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1147 1147 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1148 1148 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1149 1149 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1150 1150 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1151 1151 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1152 1152 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1153 1153 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1154 1154 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1155 1155 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1156 1156 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1157 1157 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1158 1158 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1159 1159 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1160 1160 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1161 1161 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1162 1162 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1163 1163 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1164 1164 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1165 1165 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1166 1166 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1167 1167 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1168 1168 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1169 1169 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1170 1170 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1171 1171 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1172 1172 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1173 1173 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1174 1174 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1175 1175 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1176 1176 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1177 1177 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1178 1178 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1179 1179 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1180 1180 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1181 1181 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1182 1182 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1183 1183 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1184 1184 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1185 1185 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1186 1186 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1187 1187 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1188 1188 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1189 1189 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1190 1190 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1191 1191 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1192 1192 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1193 1193 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1194 1194 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1195 1195 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1196 1196 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1197 1197 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1198 1198 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1199 1199 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1200 1200 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1201 1201 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1202 1202 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1203 1203 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1204 1204 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1205 1205 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1206 1206 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1207 1207 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1208 1208 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1209 1209 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1210 1210 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1211 1211 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1212 1212 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1213 1213 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1214 1214 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1215 1215 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1216 1216 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1217 1217 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1218 1218 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1219 1219 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1220 1220 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1221 1221 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1222 1222 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1223 1223 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1224 1224 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1225 1225 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1226 1226 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1227 1227 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1228 1228 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1229 1229 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1230 1230 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1231 1231 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1232 1232 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1233 1233 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1234 1234 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1235 1235 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1236 1236 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1237 1237 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1238 1238 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1239 1239 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1240 1240 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1241 1241 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1242 1242 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1243 1243 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1244 1244 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1245 1245 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1246 1246 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1247 1247 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1248 1248 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1249 1249 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1250 1250 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1251 1251 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1252 1252 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1253 1253 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1254 1254 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1255 1255 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1256 1256 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1257 1257 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1258 1258 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1259 1259 androidannotations-3.2 427d3f840a05c5fa4ded9fd3d94fe740c87e87ce
## 1260 1260 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1261 1261 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1262 1262 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1263 1263 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1264 1264 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1265 1265 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1266 1266 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1267 1267 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1268 1268 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1269 1269 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1270 1270 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1271 1271 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1272 1272 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1273 1273 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1274 1274 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1275 1275 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1276 1276 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1277 1277 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1278 1278 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1279 1279 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1280 1280 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1281 1281 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1282 1282 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1283 1283 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1284 1284 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1285 1285 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1286 1286 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1287 1287 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1288 1288 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1289 1289 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1290 1290 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1291 1291 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1292 1292 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1293 1293 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1294 1294 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1295 1295 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1296 1296 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1297 1297 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1298 1298 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1299 1299 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1300 1300 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1301 1301 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1302 1302 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1303 1303 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1304 1304 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1305 1305 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1306 1306 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1307 1307 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1308 1308 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1309 1309 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1310 1310 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1311 1311 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1312 1312 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1313 1313 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1314 1314 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1315 1315 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1316 1316 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1317 1317 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1318 1318 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1319 1319 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1320 1320 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1321 1321 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1322 1322 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1323 1323 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1324 1324 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1325 1325 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1326 1326 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1327 1327 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1328 1328 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1329 1329 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1330 1330 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1331 1331 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1332 1332 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1333 1333 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1334 1334 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1335 1335 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1336 1336 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1337 1337 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1338 1338 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1339 1339 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1340 1340 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1341 1341 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1342 1342 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1343 1343 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1344 1344 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1345 1345 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1346 1346 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1347 1347 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1348 1348 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1349 1349 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1350 1350 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1351 1351 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1352 1352 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1353 1353 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1354 1354 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1355 1355 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1356 1356 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1357 1357 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1358 1358 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1359 1359 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1360 1360 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1361 1361 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1362 1362 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1363 1363 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1364 1364 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1365 1365 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1366 1366 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1367 1367 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1368 1368 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1369 1369 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1370 1370 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1371 1371 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1372 1372 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1373 1373 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1374 1374 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1375 1375 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1376 1376 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1377 1377 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1378 1378 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1379 1379 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1380 1380 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1381 1381 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1382 1382 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1383 1383 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1384 1384 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1385 1385 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1386 1386 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1387 1387 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1388 1388 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1389 1389 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1390 1390 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1391 1391 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1392 1392 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1393 1393 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1394 1394 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1395 1395 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1396 1396 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1397 1397 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1398 1398 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1399 1399 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1400 1400 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1401 1401 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1402 1402 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1403 1403 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1404 1404 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1405 1405 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1406 1406 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1407 1407 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1408 1408 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1409 1409 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1410 1410 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1411 1411 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1412 1412 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1413 1413 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1414 1414 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1415 1415 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1416 1416 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1417 1417 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1418 1418 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1419 1419 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1420 1420 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1421 1421 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1422 1422 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1423 1423 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1424 1424 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1425 1425 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1426 1426 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1427 1427 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1428 1428 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1429 1429 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1430 1430 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1431 1431 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1432 1432 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1433 1433 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1434 1434 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1435 1435 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1436 1436 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1437 1437 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1438 1438 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1439 1439 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1440 1440 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1441 1441 androidannotations-3.3 0161898a42f72e2e3f6434f9737eec4f39b0c4d6
## 1442 1442 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1443 1443 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1444 1444 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1445 1445 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1446 1446 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1447 1447 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1448 1448 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1449 1449 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1450 1450 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1451 1451 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1452 1452 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1453 1453 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1454 1454 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1455 1455 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1456 1456 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1457 1457 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1458 1458 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1459 1459 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1460 1460 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1461 1461 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1462 1462 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1463 1463 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1464 1464 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1465 1465 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1466 1466 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1467 1467 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1468 1468 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1469 1469 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1470 1470 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1471 1471 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1472 1472 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1473 1473 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1474 1474 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1475 1475 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1476 1476 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1477 1477 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1478 1478 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1479 1479 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1480 1480 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1481 1481 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1482 1482 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1483 1483 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1484 1484 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1485 1485 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1486 1486 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1487 1487 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1488 1488 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1489 1489 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1490 1490 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1491 1491 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1492 1492 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1493 1493 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1494 1494 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1495 1495 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1496 1496 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1497 1497 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1498 1498 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1499 1499 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1500 1500 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1501 1501 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1502 1502 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1503 1503 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1504 1504 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1505 1505 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1506 1506 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1507 1507 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1508 1508 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1509 1509 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1510 1510 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1511 1511 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1512 1512 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1513 1513 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1514 1514 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1515 1515 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1516 1516 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1517 1517 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1518 1518 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1519 1519 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1520 1520 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1521 1521 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1522 1522 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1523 1523 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1524 1524 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1525 1525 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1526 1526 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1527 1527 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1528 1528 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1529 1529 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1530 1530 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1531 1531 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1532 1532 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1533 1533 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1534 1534 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1535 1535 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1536 1536 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1537 1537 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1538 1538 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1539 1539 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1540 1540 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1541 1541 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1542 1542 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1543 1543 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1544 1544 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1545 1545 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1546 1546 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1547 1547 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1548 1548 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1549 1549 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1550 1550 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1551 1551 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1552 1552 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1553 1553 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1554 1554 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1555 1555 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1556 1556 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1557 1557 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1558 1558 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1559 1559 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1560 1560 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1561 1561 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1562 1562 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1563 1563 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1564 1564 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1565 1565 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1566 1566 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1567 1567 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1568 1568 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1569 1569 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1570 1570 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1571 1571 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1572 1572 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1573 1573 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1574 1574 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1575 1575 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1576 1576 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1577 1577 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1578 1578 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1579 1579 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1580 1580 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1581 1581 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1582 1582 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1583 1583 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1584 1584 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1585 1585 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1586 1586 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1587 1587 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1588 1588 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1589 1589 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1590 1590 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1591 1591 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1592 1592 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1593 1593 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1594 1594 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1595 1595 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1596 1596 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1597 1597 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1598 1598 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1599 1599 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1600 1600 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1601 1601 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1602 1602 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1603 1603 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1604 1604 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1605 1605 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1606 1606 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1607 1607 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1608 1608 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1609 1609 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1610 1610 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1611 1611 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1612 1612 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1613 1613 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1614 1614 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1615 1615 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1616 1616 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1617 1617 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1618 1618 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1619 1619 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1620 1620 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1621 1621 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1622 1622 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1623 1623 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1624 1624 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1625 1625 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1626 1626 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1627 1627 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1628 1628 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1629 1629 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1630 1630 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1631 1631 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1632 1632 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1633 1633 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1634 1634 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1635 1635 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1636 1636 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1637 1637 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1638 1638 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1639 1639 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1640 1640 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1641 1641 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1642 1642 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1643 1643 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1644 1644 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1645 1645 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1646 1646 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1647 1647 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1648 1648 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1649 1649 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1650 1650 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1651 1651 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1652 1652 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1653 1653 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1654 1654 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1655 1655 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1656 1656 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1657 1657 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1658 1658 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1659 1659 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1660 1660 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1661 1661 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1662 1662 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1663 1663 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1664 1664 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1665 1665 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1666 1666 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1667 1667 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1668 1668 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1669 1669 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1670 1670 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1671 1671 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1672 1672 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1673 1673 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1674 1674 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1675 1675 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1676 1676 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1677 1677 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1678 1678 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1679 1679 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1680 1680 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1681 1681 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1682 1682 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1683 1683 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1684 1684 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1685 1685 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1686 1686 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1687 1687 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1688 1688 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1689 1689 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1690 1690 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1691 1691 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1692 1692 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1693 1693 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1694 1694 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1695 1695 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1696 1696 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1697 1697 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1698 1698 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1699 1699 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1700 1700 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1701 1701 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1702 1702 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1703 1703 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1704 1704 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1705 1705 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1706 1706 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1707 1707 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1708 1708 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1709 1709 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1710 1710 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1711 1711 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1712 1712 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1713 1713 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1714 1714 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1715 1715 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1716 1716 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1717 1717 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1718 1718 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1719 1719 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1720 1720 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1721 1721 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1722 1722 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1723 1723 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1724 1724 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1725 1725 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1726 1726 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1727 1727 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1728 1728 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1729 1729 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1730 1730 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1731 1731 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1732 1732 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1733 1733 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1734 1734 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1735 1735 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1736 1736 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1737 1737 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1738 1738 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1739 1739 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1740 1740 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1741 1741 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1742 1742 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1743 1743 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1744 1744 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1745 1745 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1746 1746 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1747 1747 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1748 1748 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1749 1749 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1750 1750 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1751 1751 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1752 1752 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1753 1753 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1754 1754 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1755 1755 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1756 1756 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1757 1757 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1758 1758 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1759 1759 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1760 1760 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1761 1761 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1762 1762 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1763 1763 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1764 1764 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1765 1765 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1766 1766 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1767 1767 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1768 1768 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1769 1769 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1770 1770 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1771 1771 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1772 1772 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1773 1773 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1774 1774 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1775 1775 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1776 1776 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1777 1777 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1778 1778 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1779 1779 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1780 1780 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1781 1781 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1782 1782 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1783 1783 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1784 1784 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1785 1785 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1786 1786 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1787 1787 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1788 1788 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1789 1789 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1790 1790 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1791 1791 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1792 1792 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1793 1793 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1794 1794 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1795 1795 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1796 1796 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1797 1797 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1798 1798 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1799 1799 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1800 1800 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1801 1801 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1802 1802 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1803 1803 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1804 1804 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1805 1805 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1806 1806 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1807 1807 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1808 1808 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1809 1809 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1810 1810 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1811 1811 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1812 1812 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1813 1813 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1814 1814 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1815 1815 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1816 1816 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1817 1817 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1818 1818 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1819 1819 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1820 1820 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1821 1821 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1822 1822 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1823 1823 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1824 1824 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1825 1825 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1826 1826 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1827 1827 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1828 1828 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1829 1829 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1830 1830 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1831 1831 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1832 1832 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1833 1833 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1834 1834 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1835 1835 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1836 1836 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1837 1837 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1838 1838 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1839 1839 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1840 1840 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1841 1841 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1842 1842 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1843 1843 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1844 1844 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1845 1845 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1846 1846 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1847 1847 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1848 1848 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1849 1849 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1850 1850 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1851 1851 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1852 1852 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1853 1853 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1854 1854 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1855 1855 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1856 1856 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1857 1857 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1858 1858 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1859 1859 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1860 1860 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1861 1861 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1862 1862 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1863 1863 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1864 1864 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1865 1865 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1866 1866 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1867 1867 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1868 1868 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1869 1869 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1870 1870 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1871 1871 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1872 1872 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1873 1873 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1874 1874 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1875 1875 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1876 1876 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1877 1877 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1878 1878 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1879 1879 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1880 1880 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1881 1881 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1882 1882 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1883 1883 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1884 1884 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1885 1885 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1886 1886 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1887 1887 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1888 1888 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1889 1889 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1890 1890 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1891 1891 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1892 1892 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1893 1893 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1894 1894 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1895 1895 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1896 1896 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1897 1897 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1898 1898 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1899 1899 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1900 1900 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1901 1901 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1902 1902 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1903 1903 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1904 1904 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1905 1905 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1906 1906 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1907 1907 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1908 1908 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1909 1909 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1910 1910 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1911 1911 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1912 1912 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1913 1913 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1914 1914 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1915 1915 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1916 1916 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1917 1917 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1918 1918 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1919 1919 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1920 1920 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1921 1921 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1922 1922 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1923 1923 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1924 1924 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1925 1925 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1926 1926 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1927 1927 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1928 1928 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1929 1929 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1930 1930 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1931 1931 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1932 1932 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1933 1933 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1934 1934 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1935 1935 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1936 1936 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1937 1937 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1938 1938 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1939 1939 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1940 1940 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1941 1941 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1942 1942 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1943 1943 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1944 1944 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1945 1945 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1946 1946 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1947 1947 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1948 1948 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1949 1949 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1950 1950 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1951 1951 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1952 1952 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1953 1953 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1954 1954 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1955 1955 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1956 1956 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1957 1957 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1958 1958 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1959 1959 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1960 1960 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1961 1961 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1962 1962 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1963 1963 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1964 1964 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1965 1965 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1966 1966 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1967 1967 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1968 1968 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1969 1969 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1970 1970 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1971 1971 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1972 1972 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1973 1973 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1974 1974 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1975 1975 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1976 1976 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1977 1977 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1978 1978 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1979 1979 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1980 1980 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1981 1981 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1982 1982 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1983 1983 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1984 1984 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1985 1985 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1986 1986 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1987 1987 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1988 1988 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1989 1989 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1990 1990 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1991 1991 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1992 1992 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1993 1993 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1994 1994 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1995 1995 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1996 1996 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1997 1997 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1998 1998 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1999 1999 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2000 2000 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2001 2001 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2002 2002 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2003 2003 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2004 2004 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2005 2005 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2006 2006 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2007 2007 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2008 2008 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2009 2009 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2010 2010 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2011 2011 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2012 2012 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2013 2013 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2014 2014 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2015 2015 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2016 2016 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2017 2017 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2018 2018 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2019 2019 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2020 2020 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2021 2021 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2022 2022 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2023 2023 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2024 2024 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2025 2025 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2026 2026 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2027 2027 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2028 2028 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2029 2029 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2030 2030 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2031 2031 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2032 2032 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2033 2033 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2034 2034 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2035 2035 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2036 2036 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2037 2037 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2038 2038 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2039 2039 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2040 2040 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2041 2041 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2042 2042 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2043 2043 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2044 2044 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2045 2045 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2046 2046 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2047 2047 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2048 2048 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2049 2049 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2050 2050 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2051 2051 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2052 2052 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2053 2053 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2054 2054 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2055 2055 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2056 2056 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2057 2057 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2058 2058 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2059 2059 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2060 2060 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2061 2061 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2062 2062 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2063 2063 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2064 2064 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2065 2065 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2066 2066 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2067 2067 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2068 2068 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2069 2069 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2070 2070 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2071 2071 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2072 2072 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2073 2073 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2074 2074 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2075 2075 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2076 2076 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2077 2077 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2078 2078 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2079 2079 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2080 2080 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2081 2081 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2082 2082 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2083 2083 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2084 2084 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2085 2085 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2086 2086 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2087 2087 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2088 2088 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2089 2089 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2090 2090 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2091 2091 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2092 2092 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2093 2093 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2094 2094 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2095 2095 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2096 2096 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2097 2097 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2098 2098 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2099 2099 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2100 2100 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2101 2101 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2102 2102 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2103 2103 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2104 2104 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2105 2105 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2106 2106 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2107 2107 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2108 2108 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2109 2109 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2110 2110 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2111 2111 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2112 2112 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2113 2113 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2114 2114 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2115 2115 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2116 2116 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2117 2117 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2118 2118 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2119 2119 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2120 2120 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2121 2121 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2122 2122 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2123 2123 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2124 2124 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2125 2125 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2126 2126 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2127 2127 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2128 2128 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2129 2129 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2130 2130 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2131 2131 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2132 2132 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2133 2133 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2134 2134 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2135 2135 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2136 2136 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2137 2137 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2138 2138 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2139 2139 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2140 2140 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2141 2141 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2142 2142 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2143 2143 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2144 2144 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2145 2145 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2146 2146 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2147 2147 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2148 2148 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2149 2149 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2150 2150 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2151 2151 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2152 2152 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2153 2153 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2154 2154 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2155 2155 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2156 2156 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2157 2157 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2158 2158 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2159 2159 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2160 2160 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2161 2161 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2162 2162 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2163 2163 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2164 2164 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2165 2165 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2166 2166 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2167 2167 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2168 2168 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2169 2169 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2170 2170 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2171 2171 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2172 2172 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2173 2173 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2174 2174 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2175 2175 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2176 2176 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2177 2177 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2178 2178 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2179 2179 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2180 2180 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2181 2181 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2182 2182 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2183 2183 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2184 2184 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2185 2185 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2186 2186 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2187 2187 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2188 2188 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2189 2189 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2190 2190 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2191 2191 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2192 2192 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2193 2193 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2194 2194 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2195 2195 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2196 2196 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2197 2197 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2198 2198 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2199 2199 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2200 2200 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2201 2201 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2202 2202 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2203 2203 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2204 2204 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2205 2205 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2206 2206 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2207 2207 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2208 2208 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2209 2209 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2210 2210 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2211 2211 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2212 2212 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2213 2213 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2214 2214 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2215 2215 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2216 2216 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2217 2217 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2218 2218 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2219 2219 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2220 2220 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2221 2221 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2222 2222 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2223 2223 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2224 2224 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2225 2225 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2226 2226 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2227 2227 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2228 2228 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2229 2229 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2230 2230 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2231 2231 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2232 2232 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2233 2233 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2234 2234 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2235 2235 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2236 2236 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2237 2237 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2238 2238 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2239 2239 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2240 2240 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2241 2241 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2242 2242 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2243 2243 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2244 2244 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2245 2245 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2246 2246 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2247 2247 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2248 2248 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2249 2249 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2250 2250 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2251 2251 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2252 2252 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2253 2253 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2254 2254 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2255 2255 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2256 2256 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2257 2257 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2258 2258 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2259 2259 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2260 2260 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2261 2261 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2262 2262 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2263 2263 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2264 2264 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2265 2265 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2266 2266 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2267 2267 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2268 2268 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2269 2269 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2270 2270 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2271 2271 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2272 2272 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2273 2273 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2274 2274 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2275 2275 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2276 2276 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2277 2277 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2278 2278 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2279 2279 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2280 2280 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2281 2281 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2282 2282 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2283 2283 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2284 2284 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2285 2285 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2286 2286 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2287 2287 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2288 2288 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2289 2289 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2290 2290 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2291 2291 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2292 2292 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2293 2293 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2294 2294 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2295 2295 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2296 2296 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2297 2297 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2298 2298 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2299 2299 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2300 2300 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2301 2301 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2302 2302 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2303 2303 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2304 2304 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2305 2305 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2306 2306 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2307 2307 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2308 2308 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2309 2309 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2310 2310 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2311 2311 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2312 2312 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2313 2313 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2314 2314 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2315 2315 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2316 2316 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2317 2317 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2318 2318 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2319 2319 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2320 2320 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2321 2321 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2322 2322 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2323 2323 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2324 2324 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2325 2325 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2326 2326 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2327 2327 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2328 2328 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2329 2329 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2330 2330 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2331 2331 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2332 2332 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2333 2333 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2334 2334 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2335 2335 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2336 2336 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2337 2337 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2338 2338 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2339 2339 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2340 2340 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2341 2341 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2342 2342 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2343 2343 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2344 2344 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2345 2345 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2346 2346 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2347 2347 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2348 2348 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2349 2349 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2350 2350 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2351 2351 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2352 2352 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2353 2353 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2354 2354 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2355 2355 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2356 2356 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2357 2357 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2358 2358 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2359 2359 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2360 2360 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2361 2361 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2362 2362 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2363 2363 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2364 2364 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2365 2365 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2366 2366 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2367 2367 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2368 2368 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2369 2369 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2370 2370 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2371 2371 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2372 2372 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2373 2373 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2374 2374 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2375 2375 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2376 2376 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2377 2377 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2378 2378 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2379 2379 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2380 2380 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2381 2381 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2382 2382 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2383 2383 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2384 2384 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2385 2385 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2386 2386 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2387 2387 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2388 2388 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2389 2389 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2390 2390 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2391 2391 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2392 2392 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2393 2393 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2394 2394 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2395 2395 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2396 2396 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2397 2397 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2398 2398 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2399 2399 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2400 2400 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2401 2401 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2402 2402 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2403 2403 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2404 2404 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2405 2405 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2406 2406 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2407 2407 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2408 2408 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2409 2409 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2410 2410 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2411 2411 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2412 2412 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2413 2413 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2414 2414 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2415 2415 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2416 2416 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2417 2417 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2418 2418 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2419 2419 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2420 2420 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2421 2421 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2422 2422 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2423 2423 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2424 2424 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2425 2425 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2426 2426 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2427 2427 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2428 2428 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2429 2429 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2430 2430 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2431 2431 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2432 2432 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2433 2433 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2434 2434 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2435 2435 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2436 2436 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2437 2437 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2438 2438 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2439 2439 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2440 2440 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2441 2441 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2442 2442 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2443 2443 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2444 2444 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2445 2445 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2446 2446 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2447 2447 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2448 2448 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2449 2449 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2450 2450 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2451 2451 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2452 2452 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2453 2453 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2454 2454 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2455 2455 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2456 2456 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2457 2457 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2458 2458 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2459 2459 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2460 2460 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2461 2461 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2462 2462 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2463 2463 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2464 2464 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2465 2465 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2466 2466 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2467 2467 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2468 2468 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2469 2469 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2470 2470 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2471 2471 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2472 2472 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2473 2473 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2474 2474 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2475 2475 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2476 2476 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2477 2477 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2478 2478 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2479 2479 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2480 2480 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2481 2481 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2482 2482 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2483 2483 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2484 2484 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2485 2485 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2486 2486 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2487 2487 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2488 2488 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2489 2489 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2490 2490 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2491 2491 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2492 2492 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2493 2493 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2494 2494 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2495 2495 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2496 2496 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2497 2497 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2498 2498 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2499 2499 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2500 2500 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2501 2501 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2502 2502 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2503 2503 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2504 2504 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2505 2505 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2506 2506 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2507 2507 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2508 2508 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2509 2509 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2510 2510 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2511 2511 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2512 2512 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2513 2513 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2514 2514 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2515 2515 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2516 2516 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2517 2517 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2518 2518 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2519 2519 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2520 2520 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2521 2521 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2522 2522 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2523 2523 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2524 2524 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2525 2525 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2526 2526 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2527 2527 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2528 2528 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2529 2529 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2530 2530 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2531 2531 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2532 2532 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2533 2533 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2534 2534 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2535 2535 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2536 2536 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2537 2537 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2538 2538 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2539 2539 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2540 2540 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2541 2541 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2542 2542 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2543 2543 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2544 2544 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2545 2545 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2546 2546 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2547 2547 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2548 2548 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2549 2549 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2550 2550 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2551 2551 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2552 2552 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2553 2553 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2554 2554 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2555 2555 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2556 2556 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2557 2557 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2558 2558 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2559 2559 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2560 2560 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2561 2561 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2562 2562 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2563 2563 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2564 2564 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2565 2565 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2566 2566 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2567 2567 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2568 2568 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2569 2569 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2570 2570 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2571 2571 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2572 2572 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2573 2573 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2574 2574 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2575 2575 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2576 2576 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2577 2577 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2578 2578 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2579 2579 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2580 2580 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2581 2581 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2582 2582 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2583 2583 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2584 2584 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2585 2585 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2586 2586 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2587 2587 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2588 2588 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2589 2589 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2590 2590 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2591 2591 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2592 2592 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2593 2593 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2594 2594 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2595 2595 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2596 2596 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2597 2597 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2598 2598 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2599 2599 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2600 2600 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2601 2601 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2602 2602 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2603 2603 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2604 2604 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2605 2605 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2606 2606 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2607 2607 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2608 2608 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2609 2609 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2610 2610 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2611 2611 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2612 2612 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2613 2613 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2614 2614 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2615 2615 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2616 2616 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2617 2617 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2618 2618 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2619 2619 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2620 2620 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2621 2621 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2622 2622 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2623 2623 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2624 2624 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2625 2625 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2626 2626 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2627 2627 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2628 2628 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2629 2629 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2630 2630 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2631 2631 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2632 2632 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2633 2633 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2634 2634 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2635 2635 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2636 2636 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2637 2637 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2638 2638 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2639 2639 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2640 2640 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2641 2641 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2642 2642 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2643 2643 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2644 2644 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2645 2645 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2646 2646 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2647 2647 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2648 2648 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2649 2649 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2650 2650 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2651 2651 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2652 2652 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2653 2653 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2654 2654 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2655 2655 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2656 2656 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2657 2657 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2658 2658 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2659 2659 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2660 2660 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2661 2661 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2662 2662 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2663 2663 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2664 2664 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2665 2665 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2666 2666 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2667 2667 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2668 2668 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2669 2669 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2670 2670 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2671 2671 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2672 2672 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2673 2673 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2674 2674 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2675 2675 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2676 2676 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2677 2677 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2678 2678 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2679 2679 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2680 2680 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2681 2681 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2682 2682 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2683 2683 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2684 2684 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2685 2685 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2686 2686 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2687 2687 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2688 2688 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2689 2689 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2690 2690 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2691 2691 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2692 2692 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2693 2693 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2694 2694 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2695 2695 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2696 2696 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2697 2697 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2698 2698 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2699 2699 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2700 2700 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2701 2701 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2702 2702 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2703 2703 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2704 2704 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2705 2705 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2706 2706 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2707 2707 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2708 2708 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2709 2709 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2710 2710 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2711 2711 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2712 2712 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2713 2713 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2714 2714 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2715 2715 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2716 2716 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2717 2717 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2718 2718 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2719 2719 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2720 2720 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2721 2721 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2722 2722 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2723 2723 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2724 2724 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2725 2725 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2726 2726 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2727 2727 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2728 2728 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2729 2729 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2730 2730 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2731 2731 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2732 2732 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2733 2733 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2734 2734 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2735 2735 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2736 2736 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2737 2737 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2738 2738 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2739 2739 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2740 2740 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2741 2741 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2742 2742 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2743 2743 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2744 2744 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2745 2745 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2746 2746 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2747 2747 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2748 2748 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2749 2749 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2750 2750 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2751 2751 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2752 2752 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2753 2753 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2754 2754 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2755 2755 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2756 2756 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2757 2757 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2758 2758 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2759 2759 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2760 2760 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2761 2761 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2762 2762 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2763 2763 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2764 2764 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2765 2765 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2766 2766 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2767 2767 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2768 2768 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2769 2769 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2770 2770 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2771 2771 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2772 2772 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2773 2773 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2774 2774 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2775 2775 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2776 2776 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2777 2777 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2778 2778 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2779 2779 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2780 2780 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2781 2781 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2782 2782 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2783 2783 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2784 2784 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2785 2785 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2786 2786 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2787 2787 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2788 2788 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2789 2789 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2790 2790 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2791 2791 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2792 2792 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2793 2793 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2794 2794 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2795 2795 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2796 2796 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2797 2797 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2798 2798 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2799 2799 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2800 2800 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2801 2801 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2802 2802 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2803 2803 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2804 2804 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2805 2805 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2806 2806 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2807 2807 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2808 2808 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2809 2809 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2810 2810 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2811 2811 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2812 2812 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2813 2813 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2814 2814 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2815 2815 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2816 2816 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2817 2817 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2818 2818 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2819 2819 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2820 2820 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2821 2821 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2822 2822 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2823 2823 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2824 2824 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2825 2825 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2826 2826 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2827 2827 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2828 2828 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2829 2829 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2830 2830 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2831 2831 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2832 2832 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2833 2833 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2834 2834 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2835 2835 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2836 2836 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2837 2837 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2838 2838 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2839 2839 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2840 2840 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2841 2841 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2842 2842 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2843 2843 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2844 2844 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2845 2845 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2846 2846 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2847 2847 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2848 2848 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2849 2849 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2850 2850 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2851 2851 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2852 2852 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2853 2853 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2854 2854 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2855 2855 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2856 2856 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2857 2857 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2858 2858 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2859 2859 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2860 2860 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2861 2861 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2862 2862 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2863 2863 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2864 2864 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2865 2865 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2866 2866 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2867 2867 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2868 2868 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2869 2869 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2870 2870 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2871 2871 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2872 2872 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2873 2873 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2874 2874 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2875 2875 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2876 2876 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2877 2877 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2878 2878 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2879 2879 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2880 2880 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2881 2881 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2882 2882 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2883 2883 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2884 2884 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2885 2885 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2886 2886 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2887 2887 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2888 2888 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2889 2889 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2890 2890 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2891 2891 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2892 2892 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2893 2893 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2894 2894 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2895 2895 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2896 2896 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2897 2897 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2898 2898 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2899 2899 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2900 2900 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2901 2901 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2902 2902 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2903 2903 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2904 2904 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2905 2905 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2906 2906 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2907 2907 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2908 2908 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2909 2909 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2910 2910 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2911 2911 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2912 2912 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2913 2913 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2914 2914 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2915 2915 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2916 2916 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2917 2917 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2918 2918 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2919 2919 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2920 2920 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2921 2921 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2922 2922 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2923 2923 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2924 2924 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2925 2925 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2926 2926 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2927 2927 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2928 2928 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2929 2929 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2930 2930 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2931 2931 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2932 2932 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2933 2933 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2934 2934 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2935 2935 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2936 2936 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2937 2937 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2938 2938 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2939 2939 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2940 2940 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2941 2941 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2942 2942 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2943 2943 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2944 2944 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2945 2945 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2946 2946 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2947 2947 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2948 2948 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2949 2949 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2950 2950 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2951 2951 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2952 2952 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2953 2953 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2954 2954 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2955 2955 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2956 2956 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2957 2957 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2958 2958 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2959 2959 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2960 2960 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2961 2961 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2962 2962 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2963 2963 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2964 2964 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2965 2965 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2966 2966 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2967 2967 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2968 2968 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2969 2969 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2970 2970 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2971 2971 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2972 2972 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2973 2973 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2974 2974 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2975 2975 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2976 2976 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2977 2977 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2978 2978 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2979 2979 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2980 2980 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2981 2981 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2982 2982 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2983 2983 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2984 2984 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2985 2985 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2986 2986 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2987 2987 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2988 2988 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2989 2989 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2990 2990 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2991 2991 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2992 2992 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2993 2993 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2994 2994 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2995 2995 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2996 2996 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2997 2997 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2998 2998 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2999 2999 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3000 3000 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3001 3001 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3002 3002 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3003 3003 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3004 3004 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3005 3005 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3006 3006 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3007 3007 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3008 3008 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3009 3009 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3010 3010 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3011 3011 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3012 3012 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3013 3013 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3014 3014 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3015 3015 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3016 3016 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3017 3017 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3018 3018 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3019 3019 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3020 3020 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3021 3021 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3022 3022 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3023 3023 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3024 3024 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3025 3025 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3026 3026 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3027 3027 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3028 3028 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3029 3029 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3030 3030 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3031 3031 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3032 3032 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3033 3033 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3034 3034 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3035 3035 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3036 3036 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3037 3037 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3038 3038 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3039 3039 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3040 3040 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3041 3041 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3042 3042 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3043 3043 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3044 3044 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3045 3045 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3046 3046 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3047 3047 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3048 3048 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3049 3049 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3050 3050 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3051 3051 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3052 3052 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3053 3053 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3054 3054 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3055 3055 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3056 3056 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3057 3057 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3058 3058 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3059 3059 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3060 3060 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3061 3061 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3062 3062 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3063 3063 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3064 3064 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3065 3065 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3066 3066 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3067 3067 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3068 3068 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3069 3069 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3070 3070 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3071 3071 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3072 3072 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3073 3073 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3074 3074 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3075 3075 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3076 3076 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3077 3077 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3078 3078 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3079 3079 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3080 3080 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3081 3081 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3082 3082 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3083 3083 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3084 3084 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3085 3085 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3086 3086 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3087 3087 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3088 3088 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3089 3089 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3090 3090 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3091 3091 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3092 3092 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3093 3093 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3094 3094 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3095 3095 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3096 3096 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3097 3097 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3098 3098 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3099 3099 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3100 3100 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3101 3101 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3102 3102 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3103 3103 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3104 3104 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3105 3105 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3106 3106 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3107 3107 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3108 3108 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3109 3109 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3110 3110 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3111 3111 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3112 3112 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3113 3113 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3114 3114 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3115 3115 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3116 3116 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3117 3117 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3118 3118 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3119 3119 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3120 3120 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3121 3121 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3122 3122 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3123 3123 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3124 3124 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3125 3125 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3126 3126 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3127 3127 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3128 3128 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3129 3129 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3130 3130 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3131 3131 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3132 3132 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3133 3133 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3134 3134 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3135 3135 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3136 3136 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3137 3137 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3138 3138 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3139 3139 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3140 3140 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3141 3141 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3142 3142 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3143 3143 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3144 3144 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3145 3145 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3146 3146 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3147 3147 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3148 3148 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3149 3149 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3150 3150 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3151 3151 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3152 3152 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3153 3153 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3154 3154 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3155 3155 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3156 3156 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3157 3157 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3158 3158 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3159 3159 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3160 3160 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3161 3161 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3162 3162 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3163 3163 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3164 3164 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3165 3165 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3166 3166 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3167 3167 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3168 3168 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3169 3169 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3170 3170 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3171 3171 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3172 3172 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3173 3173 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3174 3174 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3175 3175 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3176 3176 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3177 3177 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3178 3178 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3179 3179 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3180 3180 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3181 3181 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3182 3182 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3183 3183 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3184 3184 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3185 3185 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3186 3186 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3187 3187 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3188 3188 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3189 3189 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3190 3190 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3191 3191 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3192 3192 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3193 3193 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3194 3194 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3195 3195 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3196 3196 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3197 3197 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3198 3198 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3199 3199 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3200 3200 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3201 3201 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3202 3202 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3203 3203 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3204 3204 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3205 3205 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3206 3206 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3207 3207 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3208 3208 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3209 3209 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3210 3210 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3211 3211 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3212 3212 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3213 3213 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3214 3214 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3215 3215 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3216 3216 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3217 3217 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3218 3218 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3219 3219 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3220 3220 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3221 3221 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3222 3222 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3223 3223 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3224 3224 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3225 3225 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3226 3226 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3227 3227 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3228 3228 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3229 3229 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3230 3230 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3231 3231 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3232 3232 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3233 3233 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3234 3234 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3235 3235 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3236 3236 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3237 3237 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3238 3238 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3239 3239 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3240 3240 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3241 3241 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3242 3242 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3243 3243 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3244 3244 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3245 3245 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3246 3246 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3247 3247 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3248 3248 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3249 3249 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3250 3250 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3251 3251 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3252 3252 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3253 3253 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3254 3254 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3255 3255 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3256 3256 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3257 3257 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3258 3258 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3259 3259 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3260 3260 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3261 3261 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3262 3262 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3263 3263 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3264 3264 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3265 3265 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3266 3266 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3267 3267 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3268 3268 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3269 3269 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3270 3270 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3271 3271 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3272 3272 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3273 3273 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3274 3274 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3275 3275 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3276 3276 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3277 3277 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3278 3278 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3279 3279 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3280 3280 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3281 3281 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3282 3282 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3283 3283 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3284 3284 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3285 3285 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3286 3286 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3287 3287 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3288 3288 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3289 3289 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3290 3290 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3291 3291 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3292 3292 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3293 3293 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3294 3294 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3295 3295 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3296 3296 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3297 3297 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3298 3298 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3299 3299 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3300 3300 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3301 3301 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3302 3302 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3303 3303 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3304 3304 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3305 3305 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3306 3306 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3307 3307 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3308 3308 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3309 3309 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3310 3310 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3311 3311 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3312 3312 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3313 3313 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3314 3314 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3315 3315 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3316 3316 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3317 3317 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3318 3318 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3319 3319 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3320 3320 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3321 3321 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3322 3322 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3323 3323 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3324 3324 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3325 3325 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3326 3326 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3327 3327 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3328 3328 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3329 3329 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3330 3330 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3331 3331 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3332 3332 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3333 3333 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3334 3334 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3335 3335 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3336 3336 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3337 3337 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3338 3338 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3339 3339 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3340 3340 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3341 3341 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3342 3342 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3343 3343 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3344 3344 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3345 3345 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3346 3346 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3347 3347 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3348 3348 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3349 3349 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3350 3350 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3351 3351 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3352 3352 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3353 3353 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3354 3354 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3355 3355 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3356 3356 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3357 3357 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3358 3358 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3359 3359 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3360 3360 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3361 3361 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3362 3362 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3363 3363 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3364 3364 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3365 3365 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3366 3366 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3367 3367 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3368 3368 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3369 3369 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3370 3370 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3371 3371 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3372 3372 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3373 3373 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3374 3374 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3375 3375 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3376 3376 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3377 3377 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3378 3378 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3379 3379 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3380 3380 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3381 3381 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3382 3382 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3383 3383 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3384 3384 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3385 3385 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3386 3386 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3387 3387 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3388 3388 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3389 3389 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3390 3390 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3391 3391 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3392 3392 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3393 3393 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3394 3394 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3395 3395 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3396 3396 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3397 3397 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3398 3398 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3399 3399 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3400 3400 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3401 3401 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3402 3402 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3403 3403 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3404 3404 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3405 3405 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3406 3406 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3407 3407 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3408 3408 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3409 3409 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3410 3410 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3411 3411 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3412 3412 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3413 3413 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3414 3414 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3415 3415 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3416 3416 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3417 3417 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3418 3418 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3419 3419 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3420 3420 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3421 3421 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3422 3422 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3423 3423 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3424 3424 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3425 3425 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3426 3426 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3427 3427 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3428 3428 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3429 3429 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3430 3430 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3431 3431 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3432 3432 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3433 3433 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3434 3434 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3435 3435 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3436 3436 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3437 3437 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3438 3438 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3439 3439 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3440 3440 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3441 3441 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3442 3442 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3443 3443 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3444 3444 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3445 3445 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3446 3446 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3447 3447 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3448 3448 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3449 3449 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3450 3450 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3451 3451 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3452 3452 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3453 3453 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3454 3454 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3455 3455 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3456 3456 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3457 3457 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3458 3458 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3459 3459 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3460 3460 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3461 3461 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3462 3462 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3463 3463 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3464 3464 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3465 3465 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3466 3466 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3467 3467 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3468 3468 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3469 3469 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3470 3470 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3471 3471 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3472 3472 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3473 3473 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3474 3474 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3475 3475 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3476 3476 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3477 3477 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3478 3478 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3479 3479 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3480 3480 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3481 3481 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3482 3482 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3483 3483 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3484 3484 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3485 3485 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3486 3486 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3487 3487 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3488 3488 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3489 3489 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3490 3490 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3491 3491 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3492 3492 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3493 3493 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3494 3494 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3495 3495 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3496 3496 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3497 3497 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3498 3498 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3499 3499 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3500 3500 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3501 3501 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3502 3502 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3503 3503 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3504 3504 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3505 3505 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3506 3506 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3507 3507 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3508 3508 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3509 3509 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3510 3510 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3511 3511 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3512 3512 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3513 3513 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3514 3514 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3515 3515 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3516 3516 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3517 3517 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3518 3518 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3519 3519 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3520 3520 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3521 3521 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3522 3522 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3523 3523 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3524 3524 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3525 3525 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3526 3526 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3527 3527 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3528 3528 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3529 3529 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3530 3530 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3531 3531 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3532 3532 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3533 3533 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3534 3534 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3535 3535 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3536 3536 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3537 3537 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3538 3538 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3539 3539 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3540 3540 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3541 3541 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3542 3542 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3543 3543 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3544 3544 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3545 3545 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3546 3546 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3547 3547 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3548 3548 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3549 3549 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3550 3550 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3551 3551 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3552 3552 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3553 3553 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3554 3554 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3555 3555 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3556 3556 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3557 3557 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3558 3558 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3559 3559 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3560 3560 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3561 3561 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3562 3562 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3563 3563 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3564 3564 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3565 3565 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3566 3566 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3567 3567 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3568 3568 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3569 3569 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3570 3570 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3571 3571 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3572 3572 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3573 3573 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3574 3574 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3575 3575 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3576 3576 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3577 3577 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3578 3578 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3579 3579 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3580 3580 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3581 3581 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3582 3582 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3583 3583 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3584 3584 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3585 3585 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3586 3586 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3587 3587 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3588 3588 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3589 3589 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3590 3590 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3591 3591 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3592 3592 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3593 3593 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3594 3594 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3595 3595 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3596 3596 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3597 3597 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3598 3598 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3599 3599 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3600 3600 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3601 3601 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3602 3602 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3603 3603 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3604 3604 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3605 3605 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3606 3606 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3607 3607 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3608 3608 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3609 3609 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3610 3610 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3611 3611 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3612 3612 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3613 3613 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3614 3614 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3615 3615 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3616 3616 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3617 3617 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3618 3618 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3619 3619 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3620 3620 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3621 3621 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3622 3622 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3623 3623 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3624 3624 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3625 3625 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3626 3626 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3627 3627 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3628 3628 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3629 3629 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3630 3630 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3631 3631 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3632 3632 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3633 3633 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3634 3634 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3635 3635 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3636 3636 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3637 3637 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3638 3638 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3639 3639 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3640 3640 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3641 3641 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3642 3642 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3643 3643 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3644 3644 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3645 3645 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3646 3646 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3647 3647 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3648 3648 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3649 3649 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3650 3650 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3651 3651 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3652 3652 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3653 3653 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3654 3654 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3655 3655 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3656 3656 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3657 3657 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3658 3658 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3659 3659 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3660 3660 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3661 3661 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3662 3662 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3663 3663 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3664 3664 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3665 3665 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3666 3666 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3667 3667 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3668 3668 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3669 3669 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3670 3670 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3671 3671 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3672 3672 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3673 3673 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3674 3674 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3675 3675 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3676 3676 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3677 3677 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3678 3678 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3679 3679 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3680 3680 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3681 3681 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3682 3682 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3683 3683 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3684 3684 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3685 3685 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3686 3686 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3687 3687 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3688 3688 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3689 3689 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3690 3690 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3691 3691 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3692 3692 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3693 3693 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3694 3694 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3695 3695 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3696 3696 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3697 3697 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3698 3698 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3699 3699 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3700 3700 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3701 3701 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3702 3702 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3703 3703 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3704 3704 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3705 3705 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3706 3706 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3707 3707 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3708 3708 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3709 3709 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3710 3710 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3711 3711 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3712 3712 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3713 3713 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3714 3714 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3715 3715 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3716 3716 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3717 3717 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3718 3718 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3719 3719 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3720 3720 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3721 3721 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3722 3722 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3723 3723 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3724 3724 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3725 3725 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3726 3726 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3727 3727 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3728 3728 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3729 3729 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3730 3730 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3731 3731 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3732 3732 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3733 3733 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3734 3734 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3735 3735 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3736 3736 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3737 3737 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3738 3738 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3739 3739 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3740 3740 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3741 3741 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3742 3742 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3743 3743 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3744 3744 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3745 3745 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3746 3746 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3747 3747 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3748 3748 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3749 3749 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3750 3750 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3751 3751 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3752 3752 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3753 3753 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3754 3754 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3755 3755 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3756 3756 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3757 3757 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3758 3758 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3759 3759 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3760 3760 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3761 3761 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3762 3762 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3763 3763 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3764 3764 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3765 3765 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3766 3766 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3767 3767 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3768 3768 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3769 3769 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3770 3770 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3771 3771 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3772 3772 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3773 3773 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3774 3774 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3775 3775 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3776 3776 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3777 3777 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3778 3778 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3779 3779 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3780 3780 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3781 3781 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3782 3782 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3783 3783 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3784 3784 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3785 3785 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3786 3786 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3787 3787 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3788 3788 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3789 3789 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3790 3790 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3791 3791 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3792 3792 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3793 3793 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3794 3794 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3795 3795 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3796 3796 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3797 3797 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3798 3798 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3799 3799 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3800 3800 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3801 3801 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3802 3802 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3803 3803 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3804 3804 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3805 3805 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3806 3806 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3807 3807 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3808 3808 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3809 3809 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3810 3810 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3811 3811 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3812 3812 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3813 3813 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3814 3814 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3815 3815 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3816 3816 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3817 3817 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3818 3818 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3819 3819 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3820 3820 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3821 3821 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3822 3822 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3823 3823 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3824 3824 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3825 3825 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3826 3826 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3827 3827 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3828 3828 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3829 3829 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3830 3830 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3831 3831 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3832 3832 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3833 3833 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3834 3834 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3835 3835 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3836 3836 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3837 3837 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3838 3838 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3839 3839 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3840 3840 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3841 3841 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3842 3842 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3843 3843 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3844 3844 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3845 3845 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3846 3846 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## Date.x Project.Name
## 1 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 2 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 3 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 4 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 5 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 6 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 7 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 8 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 9 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 10 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 11 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 12 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 13 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 14 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 15 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 16 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 17 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 18 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 19 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 20 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 21 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 22 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 23 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 24 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 25 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 26 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 27 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 28 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 29 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 30 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 31 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 32 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 33 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 34 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 35 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 36 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 37 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 38 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 39 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 40 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 41 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 42 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 43 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 44 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 45 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 46 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 47 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 48 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 49 Thu Dec 08 12:44:13 CET 2011 androidannotations
## 50 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 51 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 52 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 53 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 54 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 55 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 56 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 57 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 58 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 59 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 60 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 61 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 62 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 63 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 64 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 65 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 66 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 67 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 68 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 69 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 70 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 71 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 72 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 73 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 74 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 75 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 76 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 77 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 78 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 79 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 80 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 81 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 82 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 83 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 84 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 85 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 86 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 87 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 88 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 89 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 90 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 91 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 92 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 93 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 94 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 95 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 96 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 97 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 98 Mon Mar 26 18:23:23 CEST 2012 androidannotations
## 99 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 100 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 101 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 102 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 103 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 104 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 105 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 106 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 107 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 108 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 109 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 110 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 111 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 112 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 113 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 114 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 115 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 116 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 117 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 118 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 119 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 120 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 121 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 122 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 123 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 124 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 125 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 126 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 127 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 128 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 129 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 130 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 131 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 132 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 133 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 134 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 135 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 136 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 137 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 138 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 139 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 140 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 141 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 142 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 143 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 144 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 145 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 146 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 147 Thu Feb 02 15:39:21 CET 2012 androidannotations
## 148 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 149 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 150 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 151 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 152 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 153 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 154 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 155 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 156 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 157 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 158 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 159 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 160 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 161 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 162 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 163 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 164 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 165 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 166 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 167 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 168 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 169 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 170 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 171 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 172 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 173 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 174 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 175 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 176 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 177 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 178 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 179 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 180 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 181 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 182 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 183 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 184 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 185 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 186 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 187 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 188 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 189 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 190 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 191 Sat Nov 26 19:41:09 CET 2011 androidannotations
## 192 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 193 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 194 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 195 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 196 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 197 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 198 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 199 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 200 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 201 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 202 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 203 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 204 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 205 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 206 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 207 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 208 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 209 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 210 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 211 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 212 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 213 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 214 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 215 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 216 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 217 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 218 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 219 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 220 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 221 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 222 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 223 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 224 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 225 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 226 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 227 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 228 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 229 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 230 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 231 Sat Sep 17 16:23:53 CEST 2011 androidannotations
## 232 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 233 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 234 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 235 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 236 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 237 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 238 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 239 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 240 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 241 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 242 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 243 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 244 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 245 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 246 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 247 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 248 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 249 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 250 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 251 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 252 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 253 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 254 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 255 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 256 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 257 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 258 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 259 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 260 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 261 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 262 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 263 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 264 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 265 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 266 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 267 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 268 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 269 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 270 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 271 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 272 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 273 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 274 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 275 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 276 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 277 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 278 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 279 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 280 Thu Jun 14 16:56:46 CEST 2012 androidannotations
## 281 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 282 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 283 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 284 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 285 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 286 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 287 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 288 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 289 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 290 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 291 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 292 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 293 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 294 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 295 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 296 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 297 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 298 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 299 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 300 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 301 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 302 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 303 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 304 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 305 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 306 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 307 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 308 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 309 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 310 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 311 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 312 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 313 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 314 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 315 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 316 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 317 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 318 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 319 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 320 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 321 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 322 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 323 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 324 Sat Nov 26 18:34:10 CET 2011 androidannotations
## 325 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 326 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 327 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 328 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 329 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 330 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 331 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 332 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 333 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 334 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 335 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 336 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 337 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 338 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 339 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 340 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 341 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 342 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 343 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 344 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 345 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 346 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 347 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 348 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 349 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 350 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 351 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 352 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 353 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 354 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 355 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 356 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 357 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 358 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 359 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 360 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 361 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 362 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 363 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 364 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 365 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 366 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 367 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 368 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 369 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 370 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 371 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 372 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 373 Fri Mar 30 09:44:51 CEST 2012 androidannotations
## 374 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 375 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 376 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 377 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 378 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 379 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 380 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 381 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 382 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 383 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 384 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 385 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 386 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 387 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 388 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 389 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 390 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 391 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 392 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 393 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 394 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 395 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 396 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 397 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 398 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 399 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 400 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 401 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 402 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 403 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 404 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 405 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 406 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 407 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 408 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 409 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 410 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 411 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 412 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 413 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 414 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 415 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 416 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 417 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 418 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 419 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 420 Sun Nov 04 17:54:39 CET 2012 androidannotations
## 421 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 422 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 423 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 424 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 425 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 426 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 427 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 428 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 429 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 430 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 431 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 432 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 433 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 434 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 435 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 436 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 437 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 438 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 439 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 440 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 441 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 442 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 443 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 444 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 445 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 446 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 447 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 448 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 449 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 450 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 451 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 452 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 453 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 454 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 455 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 456 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 457 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 458 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 459 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 460 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 461 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 462 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 463 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 464 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 465 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 466 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 467 Thu Feb 28 20:02:59 CET 2013 androidannotations
## 468 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 469 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 470 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 471 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 472 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 473 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 474 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 475 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 476 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 477 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 478 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 479 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 480 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 481 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 482 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 483 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 484 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 485 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 486 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 487 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 488 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 489 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 490 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 491 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 492 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 493 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 494 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 495 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 496 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 497 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 498 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 499 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 500 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 501 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 502 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 503 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 504 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 505 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 506 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 507 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 508 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 509 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 510 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 511 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 512 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 513 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 514 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 515 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 516 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 517 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 518 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 519 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 520 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 521 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 522 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 523 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 524 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 525 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 526 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 527 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 528 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 529 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 530 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 531 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 532 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 533 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 534 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 535 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 536 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 537 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 538 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 539 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 540 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 541 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 542 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 543 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 544 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 545 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 546 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 547 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 548 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 549 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 550 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 551 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 552 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 553 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 554 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 555 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 556 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 557 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 558 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 559 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 560 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 561 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 562 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 563 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 564 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 565 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 566 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 567 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 568 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 569 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 570 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 571 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 572 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 573 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 574 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 575 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 576 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 577 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 578 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 579 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 580 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 581 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 582 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 583 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 584 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 585 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 586 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 587 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 588 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 589 Fri Dec 27 13:03:16 CET 2013 androidannotations
## 590 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 591 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 592 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 593 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 594 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 595 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 596 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 597 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 598 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 599 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 600 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 601 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 602 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 603 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 604 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 605 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 606 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 607 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 608 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 609 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 610 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 611 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 612 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 613 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 614 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 615 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 616 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 617 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 618 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 619 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 620 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 621 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 622 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 623 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 624 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 625 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 626 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 627 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 628 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 629 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 630 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 631 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 632 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 633 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 634 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 635 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 636 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 637 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 638 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 639 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 640 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 641 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 642 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 643 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 644 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 645 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 646 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 647 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 648 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 649 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 650 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 651 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 652 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 653 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 654 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 655 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 656 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 657 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 658 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 659 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 660 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 661 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 662 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 663 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 664 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 665 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 666 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 667 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 668 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 669 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 670 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 671 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 672 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 673 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 674 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 675 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 676 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 677 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 678 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 679 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 680 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 681 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 682 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 683 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 684 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 685 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 686 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 687 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 688 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 689 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 690 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 691 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 692 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 693 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 694 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 695 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 696 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 697 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 698 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 699 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 700 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 701 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 702 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 703 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 704 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 705 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 706 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 707 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 708 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 709 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 710 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 711 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 712 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 713 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 714 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 715 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 716 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 717 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 718 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 719 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 720 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 721 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 722 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 723 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 724 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 725 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 726 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 727 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 728 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 729 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 730 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 731 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 732 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 733 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 734 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 735 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 736 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 737 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 738 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 739 Sun Jan 12 16:51:13 CET 2014 androidannotations
## 740 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 741 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 742 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 743 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 744 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 745 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 746 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 747 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 748 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 749 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 750 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 751 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 752 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 753 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 754 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 755 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 756 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 757 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 758 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 759 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 760 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 761 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 762 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 763 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 764 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 765 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 766 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 767 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 768 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 769 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 770 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 771 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 772 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 773 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 774 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 775 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 776 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 777 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 778 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 779 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 780 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 781 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 782 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 783 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 784 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 785 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 786 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 787 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 788 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 789 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 790 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 791 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 792 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 793 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 794 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 795 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 796 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 797 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 798 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 799 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 800 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 801 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 802 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 803 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 804 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 805 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 806 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 807 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 808 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 809 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 810 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 811 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 812 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 813 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 814 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 815 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 816 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 817 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 818 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 819 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 820 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 821 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 822 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 823 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 824 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 825 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 826 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 827 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 828 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 829 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 830 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 831 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 832 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 833 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 834 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 835 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 836 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 837 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 838 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 839 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 840 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 841 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 842 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 843 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 844 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 845 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 846 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 847 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 848 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 849 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 850 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 851 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 852 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 853 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 854 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 855 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 856 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 857 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 858 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 859 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 860 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 861 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 862 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 863 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 864 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 865 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 866 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 867 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 868 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 869 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 870 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 871 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 872 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 873 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 874 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 875 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 876 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 877 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 878 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 879 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 880 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 881 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 882 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 883 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 884 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 885 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 886 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 887 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 888 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 889 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 890 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 891 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 892 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 893 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 894 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 895 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 896 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 897 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 898 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 899 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 900 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 901 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 902 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 903 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 904 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 905 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 906 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 907 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 908 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 909 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 910 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 911 Sun Sep 07 17:02:18 CEST 2014 androidannotations
## 912 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 913 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 914 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 915 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 916 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 917 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 918 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 919 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 920 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 921 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 922 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 923 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 924 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 925 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 926 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 927 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 928 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 929 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 930 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 931 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 932 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 933 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 934 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 935 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 936 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 937 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 938 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 939 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 940 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 941 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 942 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 943 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 944 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 945 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 946 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 947 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 948 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 949 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 950 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 951 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 952 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 953 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 954 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 955 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 956 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 957 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 958 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 959 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 960 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 961 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 962 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 963 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 964 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 965 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 966 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 967 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 968 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 969 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 970 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 971 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 972 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 973 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 974 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 975 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 976 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 977 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 978 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 979 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 980 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 981 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 982 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 983 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 984 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 985 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 986 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 987 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 988 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 989 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 990 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 991 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 992 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 993 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 994 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 995 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 996 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 997 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 998 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 999 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1000 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1001 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1002 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1003 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1004 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1005 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1006 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1007 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1008 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1009 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1010 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1011 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1012 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1013 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1014 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1015 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1016 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1017 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1018 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1019 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1020 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1021 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1022 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1023 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1024 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1025 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1026 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1027 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1028 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1029 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1030 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1031 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1032 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1033 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1034 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1035 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1036 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1037 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1038 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1039 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1040 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1041 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1042 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1043 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1044 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1045 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1046 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1047 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1048 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1049 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1050 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1051 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1052 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1053 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1054 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1055 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1056 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1057 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1058 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1059 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1060 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1061 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1062 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1063 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1064 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1065 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1066 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1067 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1068 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1069 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1070 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1071 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1072 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1073 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1074 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1075 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1076 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1077 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1078 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1079 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1080 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1081 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1082 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1083 Wed Sep 10 19:13:06 CEST 2014 androidannotations
## 1084 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1085 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1086 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1087 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1088 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1089 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1090 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1091 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1092 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1093 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1094 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1095 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1096 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1097 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1098 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1099 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1100 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1101 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1102 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1103 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1104 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1105 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1106 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1107 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1108 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1109 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1110 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1111 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1112 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1113 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1114 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1115 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1116 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1117 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1118 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1119 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1120 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1121 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1122 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1123 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1124 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1125 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1126 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1127 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1128 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1129 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1130 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1131 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1132 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1133 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1134 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1135 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1136 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1137 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1138 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1139 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1140 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1141 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1142 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1143 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1144 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1145 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1146 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1147 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1148 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1149 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1150 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1151 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1152 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1153 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1154 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1155 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1156 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1157 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1158 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1159 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1160 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1161 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1162 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1163 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1164 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1165 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1166 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1167 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1168 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1169 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1170 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1171 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1172 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1173 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1174 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1175 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1176 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1177 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1178 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1179 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1180 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1181 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1182 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1183 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1184 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1185 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1186 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1187 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1188 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1189 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1190 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1191 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1192 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1193 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1194 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1195 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1196 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1197 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1198 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1199 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1200 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1201 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1202 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1203 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1204 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1205 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1206 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1207 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1208 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1209 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1210 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1211 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1212 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1213 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1214 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1215 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1216 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1217 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1218 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1219 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1220 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1221 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1222 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1223 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1224 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1225 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1226 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1227 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1228 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1229 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1230 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1231 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1232 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1233 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1234 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1235 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1236 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1237 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1238 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1239 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1240 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1241 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1242 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1243 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1244 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1245 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1246 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1247 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1248 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1249 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1250 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1251 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1252 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1253 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1254 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1255 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1256 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1257 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1258 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1259 Sun Nov 09 14:10:10 CET 2014 androidannotations
## 1260 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1261 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1262 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1263 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1264 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1265 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1266 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1267 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1268 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1269 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1270 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1271 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1272 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1273 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1274 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1275 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1276 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1277 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1278 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1279 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1280 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1281 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1282 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1283 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1284 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1285 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1286 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1287 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1288 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1289 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1290 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1291 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1292 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1293 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1294 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1295 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1296 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1297 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1298 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1299 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1300 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1301 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1302 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1303 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1304 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1305 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1306 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1307 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1308 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1309 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1310 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1311 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1312 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1313 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1314 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1315 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1316 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1317 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1318 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1319 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1320 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1321 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1322 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1323 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1324 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1325 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1326 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1327 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1328 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1329 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1330 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1331 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1332 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1333 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1334 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1335 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1336 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1337 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1338 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1339 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1340 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1341 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1342 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1343 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1344 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1345 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1346 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1347 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1348 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1349 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1350 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1351 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1352 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1353 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1354 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1355 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1356 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1357 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1358 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1359 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1360 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1361 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1362 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1363 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1364 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1365 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1366 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1367 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1368 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1369 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1370 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1371 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1372 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1373 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1374 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1375 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1376 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1377 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1378 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1379 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1380 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1381 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1382 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1383 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1384 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1385 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1386 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1387 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1388 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1389 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1390 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1391 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1392 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1393 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1394 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1395 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1396 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1397 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1398 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1399 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1400 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1401 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1402 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1403 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1404 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1405 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1406 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1407 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1408 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1409 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1410 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1411 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1412 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1413 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1414 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1415 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1416 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1417 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1418 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1419 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1420 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1421 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1422 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1423 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1424 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1425 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1426 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1427 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1428 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1429 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1430 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1431 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1432 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1433 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1434 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1435 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1436 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1437 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1438 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1439 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1440 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1441 Thu Apr 30 23:07:57 CEST 2015 androidannotations
## 1442 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1443 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1444 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1445 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1446 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1447 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1448 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1449 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1450 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1451 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1452 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1453 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1454 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1455 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1456 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1457 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1458 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1459 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1460 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1461 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1462 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1463 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1464 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1465 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1466 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1467 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1468 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1469 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1470 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1471 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1472 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1473 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1474 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1475 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1476 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1477 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1478 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1479 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1480 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1481 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1482 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1483 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1484 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1485 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1486 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1487 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1488 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1489 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1490 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1491 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1492 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1493 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1494 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1495 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1496 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1497 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1498 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1499 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1500 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1501 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1502 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1503 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1504 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1505 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1506 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1507 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1508 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1509 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1510 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1511 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1512 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1513 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1514 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1515 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1516 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1517 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1518 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1519 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1520 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1521 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1522 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1523 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1524 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1525 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1526 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1527 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1528 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1529 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1530 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1531 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1532 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1533 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1534 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1535 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1536 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1537 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1538 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1539 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1540 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1541 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1542 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1543 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1544 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1545 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1546 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1547 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1548 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1549 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1550 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1551 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1552 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1553 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1554 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1555 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1556 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1557 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1558 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1559 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1560 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1561 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1562 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1563 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1564 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1565 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1566 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1567 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1568 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1569 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1570 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1571 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1572 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1573 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1574 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1575 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1576 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1577 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1578 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1579 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1580 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1581 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1582 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1583 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1584 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1585 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1586 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1587 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1588 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1589 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1590 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1591 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1592 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1593 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1594 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1595 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1596 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1597 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1598 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1599 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1600 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1601 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1602 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1603 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1604 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1605 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1606 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1607 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1608 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1609 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1610 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1611 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1612 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1613 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1614 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1615 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1616 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1617 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1618 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1619 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1620 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1621 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1622 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1623 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1624 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1625 Sat May 09 12:08:19 CEST 2015 androidannotations
## 1626 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1627 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1628 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1629 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1630 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1631 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1632 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1633 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1634 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1635 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1636 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1637 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1638 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1639 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1640 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1641 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1642 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1643 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1644 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1645 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1646 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1647 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1648 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1649 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1650 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1651 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1652 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1653 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1654 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1655 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1656 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1657 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1658 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1659 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1660 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1661 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1662 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1663 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1664 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1665 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1666 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1667 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1668 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1669 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1670 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1671 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1672 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1673 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1674 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1675 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1676 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1677 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1678 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1679 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1680 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1681 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1682 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1683 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1684 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1685 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1686 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1687 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1688 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1689 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1690 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1691 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1692 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1693 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1694 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1695 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1696 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1697 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1698 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1699 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1700 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1701 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1702 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1703 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1704 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1705 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1706 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1707 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1708 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1709 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1710 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1711 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1712 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1713 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1714 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1715 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1716 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1717 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1718 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1719 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1720 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1721 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1722 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1723 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1724 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1725 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1726 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1727 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1728 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1729 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1730 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1731 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1732 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1733 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1734 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1735 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1736 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1737 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1738 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1739 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1740 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1741 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1742 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1743 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1744 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1745 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1746 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1747 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1748 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1749 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1750 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1751 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1752 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1753 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1754 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1755 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1756 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1757 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1758 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1759 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1760 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1761 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1762 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1763 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1764 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1765 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1766 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1767 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1768 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1769 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1770 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1771 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1772 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1773 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1774 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1775 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1776 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1777 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1778 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1779 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1780 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1781 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1782 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1783 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1784 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1785 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1786 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1787 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1788 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1789 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1790 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1791 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1792 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1793 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1794 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1795 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1796 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1797 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1798 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1799 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1800 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1801 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1802 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1803 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1804 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1805 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1806 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1807 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1808 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1809 Fri Jul 10 00:25:11 CEST 2015 androidannotations
## 1810 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1811 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1812 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1813 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1814 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1815 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1816 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1817 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1818 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1819 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1820 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1821 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1822 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1823 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1824 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1825 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1826 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1827 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1828 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1829 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1830 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1831 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1832 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1833 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1834 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1835 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1836 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1837 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1838 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1839 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1840 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1841 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1842 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1843 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1844 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1845 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1846 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1847 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1848 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1849 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1850 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1851 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1852 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1853 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1854 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1855 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1856 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1857 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1858 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1859 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1860 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1861 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1862 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1863 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1864 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1865 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1866 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1867 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1868 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1869 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1870 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1871 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1872 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1873 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1874 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1875 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1876 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1877 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1878 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1879 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1880 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1881 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1882 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1883 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1884 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1885 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1886 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1887 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1888 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1889 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1890 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1891 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1892 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1893 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1894 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1895 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1896 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1897 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1898 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1899 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1900 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1901 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1902 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1903 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1904 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1905 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1906 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1907 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1908 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1909 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1910 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1911 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1912 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1913 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1914 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1915 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1916 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1917 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1918 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1919 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1920 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1921 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1922 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1923 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1924 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1925 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1926 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1927 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1928 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1929 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1930 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1931 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1932 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1933 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1934 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1935 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1936 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1937 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1938 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1939 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1940 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1941 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1942 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1943 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1944 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1945 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1946 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1947 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1948 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1949 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1950 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1951 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1952 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1953 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1954 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1955 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1956 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1957 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1958 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1959 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1960 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1961 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1962 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1963 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1964 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1965 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1966 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1967 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1968 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1969 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1970 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1971 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1972 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1973 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1974 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1975 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1976 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1977 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1978 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1979 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1980 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1981 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1982 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1983 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1984 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1985 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1986 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1987 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1988 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1989 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1990 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1991 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1992 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1993 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1994 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1995 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1996 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1997 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1998 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 1999 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2000 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2001 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2002 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2003 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2004 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2005 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2006 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2007 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2008 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2009 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2010 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2011 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2012 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2013 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2014 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2015 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2016 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2017 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2018 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2019 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2020 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2021 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2022 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2023 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2024 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2025 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2026 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2027 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2028 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2029 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2030 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2031 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2032 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2033 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2034 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2035 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2036 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2037 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2038 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2039 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2040 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2041 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2042 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2043 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2044 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2045 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2046 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2047 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2048 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2049 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2050 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2051 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2052 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2053 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2054 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2055 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2056 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2057 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2058 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2059 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2060 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2061 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2062 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2063 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2064 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2065 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2066 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2067 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2068 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2069 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2070 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2071 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2072 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2073 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2074 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2075 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2076 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2077 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2078 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2079 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2080 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2081 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2082 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2083 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2084 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2085 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2086 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2087 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2088 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2089 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2090 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2091 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2092 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2093 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2094 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2095 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2096 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2097 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2098 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2099 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2100 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2101 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2102 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2103 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2104 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2105 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2106 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2107 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2108 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2109 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2110 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2111 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2112 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2113 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2114 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2115 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2116 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2117 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2118 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2119 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2120 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2121 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2122 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2123 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2124 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2125 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2126 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2127 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2128 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2129 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2130 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2131 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2132 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2133 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2134 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2135 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2136 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2137 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2138 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2139 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2140 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2141 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2142 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2143 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2144 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2145 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2146 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2147 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2148 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2149 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2150 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2151 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2152 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2153 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2154 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2155 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2156 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2157 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2158 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2159 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2160 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2161 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2162 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2163 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2164 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2165 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2166 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2167 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2168 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2169 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2170 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2171 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2172 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2173 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2174 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2175 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2176 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2177 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2178 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2179 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2180 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2181 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2182 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2183 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2184 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2185 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2186 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2187 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2188 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2189 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2190 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2191 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2192 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2193 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2194 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2195 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2196 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2197 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2198 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2199 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2200 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2201 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2202 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2203 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2204 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2205 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2206 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2207 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2208 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2209 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2210 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2211 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2212 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2213 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2214 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2215 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2216 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2217 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2218 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2219 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2220 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2221 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2222 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2223 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2224 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2225 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2226 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2227 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2228 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2229 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2230 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2231 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2232 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2233 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2234 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2235 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2236 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2237 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2238 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2239 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2240 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2241 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2242 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2243 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2244 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2245 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2246 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2247 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2248 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2249 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2250 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2251 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2252 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2253 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2254 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2255 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2256 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2257 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2258 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2259 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2260 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2261 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2262 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2263 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2264 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2265 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2266 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2267 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2268 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2269 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2270 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2271 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2272 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2273 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2274 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2275 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2276 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2277 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2278 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2279 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2280 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2281 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2282 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2283 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2284 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2285 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2286 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2287 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2288 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2289 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2290 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2291 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2292 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2293 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2294 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2295 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2296 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2297 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2298 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2299 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2300 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2301 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2302 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2303 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2304 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2305 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2306 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2307 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2308 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2309 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2310 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2311 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2312 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2313 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2314 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2315 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2316 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2317 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2318 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2319 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2320 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2321 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2322 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2323 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2324 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2325 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2326 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2327 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2328 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2329 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2330 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2331 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2332 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2333 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2334 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2335 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2336 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2337 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2338 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2339 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2340 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2341 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2342 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2343 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2344 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2345 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2346 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2347 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2348 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2349 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2350 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2351 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2352 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2353 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2354 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2355 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2356 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2357 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2358 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2359 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2360 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2361 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2362 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2363 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2364 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2365 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2366 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2367 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2368 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2369 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2370 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2371 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2372 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2373 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2374 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2375 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2376 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2377 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2378 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2379 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2380 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2381 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2382 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2383 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2384 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2385 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2386 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2387 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2388 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2389 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2390 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2391 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2392 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2393 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2394 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2395 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2396 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2397 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2398 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2399 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2400 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2401 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2402 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2403 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2404 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2405 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2406 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2407 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2408 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2409 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2410 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2411 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2412 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2413 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2414 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2415 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2416 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2417 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2418 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2419 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2420 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2421 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2422 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2423 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2424 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2425 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2426 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2427 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2428 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2429 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2430 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2431 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2432 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2433 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2434 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2435 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2436 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2437 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2438 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2439 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2440 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2441 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2442 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2443 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2444 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2445 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2446 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2447 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2448 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2449 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2450 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2451 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2452 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2453 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2454 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2455 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2456 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2457 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2458 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2459 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2460 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2461 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2462 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2463 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2464 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2465 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2466 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2467 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2468 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2469 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2470 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2471 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2472 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2473 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2474 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2475 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2476 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2477 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2478 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2479 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2480 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2481 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2482 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2483 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2484 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2485 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2486 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2487 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2488 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2489 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2490 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2491 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2492 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2493 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2494 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2495 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2496 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2497 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2498 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2499 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2500 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2501 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2502 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2503 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2504 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2505 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2506 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2507 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2508 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2509 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2510 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2511 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2512 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2513 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2514 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2515 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2516 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2517 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2518 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2519 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2520 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2521 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2522 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2523 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2524 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2525 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2526 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2527 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2528 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2529 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2530 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2531 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2532 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2533 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2534 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2535 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2536 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2537 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2538 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2539 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2540 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2541 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2542 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2543 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2544 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2545 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2546 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2547 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2548 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2549 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2550 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2551 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2552 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2553 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2554 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2555 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2556 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2557 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2558 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2559 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2560 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2561 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2562 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2563 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2564 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2565 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2566 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2567 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2568 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2569 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2570 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2571 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2572 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2573 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2574 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2575 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2576 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2577 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2578 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2579 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2580 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2581 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2582 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2583 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2584 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2585 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2586 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2587 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2588 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2589 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2590 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2591 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2592 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2593 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2594 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2595 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2596 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2597 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2598 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2599 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2600 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2601 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2602 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2603 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2604 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2605 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2606 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2607 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2608 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2609 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2610 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2611 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2612 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2613 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2614 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2615 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2616 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2617 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2618 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2619 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2620 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2621 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2622 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2623 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2624 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2625 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2626 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2627 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2628 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2629 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2630 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2631 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2632 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2633 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2634 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2635 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2636 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2637 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2638 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2639 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2640 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2641 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2642 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2643 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2644 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2645 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2646 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2647 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2648 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2649 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2650 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2651 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2652 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2653 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2654 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2655 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2656 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2657 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2658 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2659 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2660 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2661 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2662 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2663 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2664 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2665 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2666 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2667 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2668 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2669 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2670 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2671 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2672 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2673 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2674 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2675 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2676 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2677 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2678 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2679 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2680 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2681 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2682 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2683 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2684 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2685 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2686 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2687 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2688 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2689 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2690 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2691 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2692 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2693 Tue Mar 15 19:52:12 CET 2016 androidannotations
## 2694 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2695 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2696 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2697 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2698 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2699 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2700 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2701 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2702 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2703 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2704 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2705 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2706 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2707 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2708 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2709 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2710 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2711 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2712 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2713 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2714 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2715 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2716 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2717 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2718 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2719 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2720 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2721 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2722 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2723 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2724 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2725 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2726 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2727 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2728 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2729 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2730 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2731 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2732 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2733 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2734 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2735 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2736 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2737 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2738 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2739 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2740 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2741 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2742 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2743 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2744 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2745 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2746 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2747 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2748 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2749 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2750 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2751 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2752 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2753 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2754 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2755 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2756 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2757 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2758 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2759 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2760 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2761 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2762 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2763 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2764 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2765 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2766 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2767 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2768 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2769 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2770 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2771 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2772 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2773 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2774 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2775 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2776 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2777 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2778 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2779 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2780 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2781 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2782 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2783 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2784 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2785 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2786 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2787 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2788 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2789 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2790 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2791 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2792 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2793 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2794 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2795 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2796 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2797 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2798 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2799 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2800 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2801 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2802 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2803 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2804 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2805 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2806 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2807 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2808 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2809 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2810 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2811 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2812 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2813 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2814 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2815 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2816 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2817 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2818 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2819 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2820 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2821 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2822 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2823 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2824 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2825 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2826 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2827 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2828 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2829 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2830 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2831 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2832 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2833 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2834 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2835 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2836 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2837 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2838 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2839 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2840 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2841 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2842 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2843 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2844 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2845 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2846 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2847 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2848 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2849 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2850 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2851 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2852 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2853 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2854 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2855 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2856 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2857 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2858 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2859 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2860 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2861 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2862 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2863 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2864 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2865 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2866 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2867 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2868 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2869 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2870 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2871 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2872 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2873 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2874 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2875 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2876 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2877 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2878 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2879 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2880 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2881 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2882 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2883 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2884 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2885 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2886 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2887 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2888 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2889 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2890 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2891 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2892 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2893 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2894 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2895 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2896 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2897 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2898 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2899 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2900 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2901 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2902 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2903 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2904 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2905 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2906 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2907 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2908 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2909 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2910 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2911 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2912 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2913 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2914 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2915 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2916 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2917 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2918 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2919 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2920 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2921 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2922 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2923 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2924 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2925 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2926 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2927 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2928 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2929 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2930 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2931 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2932 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2933 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2934 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2935 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2936 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2937 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2938 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2939 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2940 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2941 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2942 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2943 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2944 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2945 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2946 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2947 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2948 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2949 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2950 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2951 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2952 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2953 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2954 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2955 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2956 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2957 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2958 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2959 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2960 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2961 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2962 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2963 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2964 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2965 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2966 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2967 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2968 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2969 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2970 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2971 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2972 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2973 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2974 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2975 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2976 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2977 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2978 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2979 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2980 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2981 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2982 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2983 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2984 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2985 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2986 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2987 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2988 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2989 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2990 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2991 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2992 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2993 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2994 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2995 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2996 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2997 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2998 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 2999 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3000 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3001 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3002 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3003 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3004 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3005 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3006 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3007 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3008 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3009 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3010 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3011 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3012 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3013 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3014 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3015 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3016 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3017 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3018 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3019 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3020 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3021 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3022 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3023 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3024 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3025 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3026 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3027 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3028 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3029 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3030 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3031 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3032 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3033 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3034 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3035 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3036 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3037 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3038 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3039 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3040 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3041 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3042 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3043 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3044 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3045 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3046 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3047 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3048 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3049 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3050 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3051 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3052 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3053 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3054 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3055 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3056 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3057 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3058 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3059 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3060 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3061 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3062 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3063 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3064 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3065 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3066 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3067 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3068 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3069 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3070 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3071 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3072 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3073 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3074 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3075 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3076 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3077 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3078 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3079 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3080 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3081 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3082 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3083 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3084 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3085 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3086 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3087 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3088 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3089 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3090 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3091 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3092 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3093 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3094 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3095 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3096 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3097 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3098 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3099 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3100 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3101 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3102 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3103 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3104 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3105 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3106 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3107 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3108 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3109 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3110 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3111 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3112 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3113 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3114 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3115 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3116 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3117 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3118 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3119 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3120 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3121 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3122 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3123 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3124 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3125 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3126 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3127 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3128 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3129 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3130 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3131 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3132 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3133 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3134 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3135 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3136 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3137 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3138 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3139 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3140 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3141 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3142 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3143 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3144 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3145 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3146 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3147 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3148 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3149 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3150 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3151 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3152 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3153 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3154 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3155 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3156 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3157 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3158 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3159 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3160 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3161 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3162 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3163 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3164 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3165 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3166 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3167 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3168 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3169 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3170 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3171 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3172 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3173 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3174 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3175 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3176 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3177 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3178 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3179 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3180 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3181 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3182 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3183 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3184 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3185 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3186 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3187 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3188 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3189 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3190 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3191 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3192 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3193 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3194 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3195 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3196 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3197 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3198 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3199 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3200 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3201 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3202 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3203 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3204 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3205 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3206 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3207 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3208 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3209 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3210 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3211 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3212 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3213 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3214 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3215 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3216 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3217 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3218 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3219 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3220 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3221 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3222 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3223 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3224 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3225 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3226 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3227 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3228 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3229 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3230 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3231 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3232 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3233 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3234 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3235 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3236 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3237 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3238 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3239 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3240 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3241 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3242 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3243 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3244 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3245 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3246 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3247 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3248 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3249 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3250 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3251 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3252 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3253 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3254 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3255 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3256 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3257 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3258 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3259 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3260 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3261 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3262 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3263 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3264 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3265 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3266 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3267 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3268 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3269 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3270 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3271 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3272 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3273 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3274 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3275 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3276 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3277 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3278 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3279 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3280 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3281 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3282 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3283 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3284 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3285 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3286 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3287 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3288 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3289 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3290 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3291 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3292 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3293 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3294 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3295 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3296 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3297 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3298 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3299 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3300 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3301 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3302 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3303 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3304 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3305 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3306 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3307 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3308 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3309 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3310 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3311 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3312 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3313 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3314 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3315 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3316 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3317 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3318 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3319 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3320 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3321 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3322 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3323 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3324 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3325 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3326 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3327 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3328 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3329 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3330 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3331 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3332 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3333 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3334 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3335 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3336 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3337 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3338 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3339 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3340 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3341 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3342 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3343 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3344 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3345 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3346 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3347 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3348 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3349 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3350 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3351 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3352 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3353 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3354 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3355 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3356 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3357 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3358 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3359 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3360 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3361 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3362 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3363 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3364 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3365 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3366 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3367 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3368 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3369 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3370 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3371 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3372 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3373 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3374 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3375 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3376 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3377 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3378 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3379 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3380 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3381 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3382 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3383 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3384 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3385 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3386 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3387 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3388 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3389 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3390 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3391 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3392 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3393 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3394 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3395 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3396 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3397 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3398 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3399 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3400 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3401 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3402 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3403 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3404 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3405 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3406 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3407 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3408 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3409 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3410 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3411 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3412 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3413 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3414 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3415 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3416 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3417 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3418 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3419 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3420 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3421 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3422 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3423 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3424 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3425 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3426 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3427 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3428 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3429 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3430 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3431 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3432 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3433 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3434 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3435 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3436 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3437 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3438 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3439 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3440 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3441 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3442 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3443 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3444 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3445 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3446 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3447 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3448 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3449 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3450 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3451 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3452 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3453 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3454 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3455 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3456 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3457 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3458 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3459 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3460 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3461 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3462 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3463 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3464 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3465 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3466 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3467 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3468 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3469 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3470 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3471 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3472 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3473 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3474 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3475 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3476 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3477 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3478 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3479 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3480 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3481 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3482 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3483 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3484 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3485 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3486 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3487 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3488 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3489 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3490 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3491 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3492 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3493 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3494 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3495 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3496 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3497 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3498 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3499 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3500 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3501 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3502 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3503 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3504 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3505 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3506 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3507 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3508 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3509 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3510 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3511 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3512 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3513 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3514 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3515 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3516 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3517 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3518 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3519 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3520 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3521 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3522 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3523 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3524 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3525 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3526 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3527 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3528 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3529 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3530 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3531 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3532 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3533 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3534 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3535 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3536 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3537 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3538 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3539 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3540 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3541 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3542 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3543 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3544 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3545 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3546 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3547 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3548 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3549 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3550 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3551 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3552 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3553 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3554 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3555 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3556 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3557 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3558 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3559 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3560 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3561 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3562 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3563 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3564 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3565 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3566 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3567 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3568 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3569 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3570 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3571 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3572 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3573 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3574 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3575 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3576 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3577 Thu Aug 04 10:16:39 CEST 2016 androidannotations
## 3578 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3579 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3580 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3581 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3582 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3583 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3584 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3585 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3586 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3587 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3588 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3589 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3590 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3591 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3592 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3593 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3594 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3595 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3596 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3597 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3598 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3599 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3600 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3601 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3602 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3603 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3604 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3605 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3606 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3607 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3608 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3609 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3610 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3611 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3612 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3613 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3614 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3615 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3616 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3617 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3618 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3619 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3620 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3621 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3622 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3623 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3624 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3625 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3626 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3627 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3628 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3629 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3630 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3631 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3632 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3633 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3634 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3635 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3636 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3637 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3638 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3639 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3640 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3641 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3642 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3643 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3644 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3645 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3646 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3647 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3648 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3649 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3650 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3651 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3652 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3653 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3654 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3655 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3656 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3657 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3658 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3659 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3660 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3661 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3662 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3663 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3664 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3665 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3666 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3667 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3668 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3669 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3670 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3671 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3672 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3673 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3674 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3675 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3676 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3677 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3678 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3679 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3680 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3681 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3682 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3683 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3684 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3685 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3686 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3687 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3688 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3689 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3690 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3691 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3692 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3693 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3694 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3695 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3696 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3697 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3698 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3699 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3700 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3701 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3702 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3703 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3704 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3705 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3706 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3707 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3708 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3709 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3710 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3711 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3712 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3713 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3714 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3715 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3716 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3717 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3718 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3719 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3720 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3721 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3722 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3723 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3724 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3725 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3726 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3727 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3728 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3729 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3730 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3731 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3732 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3733 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3734 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3735 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3736 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3737 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3738 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3739 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3740 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3741 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3742 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3743 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3744 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3745 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3746 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3747 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3748 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3749 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3750 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3751 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3752 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3753 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3754 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3755 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3756 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3757 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3758 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3759 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3760 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3761 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3762 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3763 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3764 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3765 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3766 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3767 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3768 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3769 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3770 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3771 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3772 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3773 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3774 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3775 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3776 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3777 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3778 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3779 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3780 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3781 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3782 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3783 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3784 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3785 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3786 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3787 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3788 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3789 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3790 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3791 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3792 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3793 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3794 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3795 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3796 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3797 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3798 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3799 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3800 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3801 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3802 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3803 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3804 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3805 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3806 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3807 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3808 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3809 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3810 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3811 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3812 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3813 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3814 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3815 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3816 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3817 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3818 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3819 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3820 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3821 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3822 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3823 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3824 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3825 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3826 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3827 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3828 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3829 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3830 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3831 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3832 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3833 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3834 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3835 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3836 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3837 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3838 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3839 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3840 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3841 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3842 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3843 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3844 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3845 Sat Dec 10 19:05:51 CET 2016 androidannotations
## 3846 Sat Dec 10 19:05:51 CET 2016 androidannotations
## Package.Name
## 1 com.googlecode.androidannotations.test15
## 2 com.googlecode.androidannotations.test15
## 3 com.googlecode.androidannotations.test15
## 4 com.googlecode.androidannotations.test15
## 5 com.googlecode.androidannotations.test15
## 6 com.googlecode.androidannotations.test15
## 7 com.googlecode.androidannotations.test15
## 8 com.googlecode.androidannotations.test15
## 9 com.googlecode.androidannotations.test15
## 10 com.googlecode.androidannotations.test15
## 11 com.googlecode.androidannotations.test15
## 12 com.googlecode.androidannotations.test15
## 13 com.googlecode.androidannotations.test15
## 14 com.googlecode.androidannotations.test15
## 15 com.googlecode.androidannotations.test15
## 16 com.googlecode.androidannotations.test15
## 17 com.googlecode.androidannotations.test15
## 18 com.googlecode.androidannotations.test15
## 19 com.googlecode.androidannotations.test15
## 20 com.googlecode.androidannotations.test15
## 21 com.googlecode.androidannotations.test15
## 22 com.googlecode.androidannotations.test15
## 23 com.googlecode.androidannotations.test15
## 24 com.googlecode.androidannotations.test15
## 25 com.googlecode.androidannotations.test15
## 26 com.googlecode.androidannotations.test15
## 27 com.googlecode.androidannotations.test15
## 28 com.googlecode.androidannotations.test15
## 29 com.googlecode.androidannotations.test15
## 30 com.googlecode.androidannotations.test15
## 31 com.googlecode.androidannotations.test15
## 32 com.googlecode.androidannotations.test15
## 33 com.googlecode.androidannotations.test15
## 34 com.googlecode.androidannotations.test15
## 35 com.googlecode.androidannotations.test15
## 36 com.googlecode.androidannotations.test15
## 37 com.googlecode.androidannotations.test15
## 38 com.googlecode.androidannotations.test15.menu
## 39 com.googlecode.androidannotations.test15.menu
## 40 com.googlecode.androidannotations.test15.prefs
## 41 com.googlecode.androidannotations.test15.prefs
## 42 com.googlecode.androidannotations.test15.prefs
## 43 com.googlecode.androidannotations.test15.prefs
## 44 com.googlecode.androidannotations.test15.res
## 45 com.googlecode.androidannotations.test15.res
## 46 com.googlecode.androidannotations.test15.res
## 47 com.googlecode.androidannotations.test15.res
## 48 com.googlecode.androidannotations.test15.roboguice
## 49 com.googlecode.androidannotations.test15.roboguice
## 50 com.googlecode.androidannotations.test15
## 51 com.googlecode.androidannotations.test15
## 52 com.googlecode.androidannotations.test15
## 53 com.googlecode.androidannotations.test15
## 54 com.googlecode.androidannotations.test15
## 55 com.googlecode.androidannotations.test15
## 56 com.googlecode.androidannotations.test15
## 57 com.googlecode.androidannotations.test15
## 58 com.googlecode.androidannotations.test15
## 59 com.googlecode.androidannotations.test15
## 60 com.googlecode.androidannotations.test15
## 61 com.googlecode.androidannotations.test15
## 62 com.googlecode.androidannotations.test15
## 63 com.googlecode.androidannotations.test15
## 64 com.googlecode.androidannotations.test15
## 65 com.googlecode.androidannotations.test15
## 66 com.googlecode.androidannotations.test15
## 67 com.googlecode.androidannotations.test15
## 68 com.googlecode.androidannotations.test15
## 69 com.googlecode.androidannotations.test15
## 70 com.googlecode.androidannotations.test15
## 71 com.googlecode.androidannotations.test15
## 72 com.googlecode.androidannotations.test15
## 73 com.googlecode.androidannotations.test15
## 74 com.googlecode.androidannotations.test15
## 75 com.googlecode.androidannotations.test15
## 76 com.googlecode.androidannotations.test15
## 77 com.googlecode.androidannotations.test15
## 78 com.googlecode.androidannotations.test15
## 79 com.googlecode.androidannotations.test15
## 80 com.googlecode.androidannotations.test15
## 81 com.googlecode.androidannotations.test15
## 82 com.googlecode.androidannotations.test15
## 83 com.googlecode.androidannotations.test15
## 84 com.googlecode.androidannotations.test15
## 85 com.googlecode.androidannotations.test15
## 86 com.googlecode.androidannotations.test15
## 87 com.googlecode.androidannotations.test15.menu
## 88 com.googlecode.androidannotations.test15.menu
## 89 com.googlecode.androidannotations.test15.prefs
## 90 com.googlecode.androidannotations.test15.prefs
## 91 com.googlecode.androidannotations.test15.prefs
## 92 com.googlecode.androidannotations.test15.prefs
## 93 com.googlecode.androidannotations.test15.res
## 94 com.googlecode.androidannotations.test15.res
## 95 com.googlecode.androidannotations.test15.res
## 96 com.googlecode.androidannotations.test15.res
## 97 com.googlecode.androidannotations.test15.roboguice
## 98 com.googlecode.androidannotations.test15.roboguice
## 99 com.googlecode.androidannotations.test15
## 100 com.googlecode.androidannotations.test15
## 101 com.googlecode.androidannotations.test15
## 102 com.googlecode.androidannotations.test15
## 103 com.googlecode.androidannotations.test15
## 104 com.googlecode.androidannotations.test15
## 105 com.googlecode.androidannotations.test15
## 106 com.googlecode.androidannotations.test15
## 107 com.googlecode.androidannotations.test15
## 108 com.googlecode.androidannotations.test15
## 109 com.googlecode.androidannotations.test15
## 110 com.googlecode.androidannotations.test15
## 111 com.googlecode.androidannotations.test15
## 112 com.googlecode.androidannotations.test15
## 113 com.googlecode.androidannotations.test15
## 114 com.googlecode.androidannotations.test15
## 115 com.googlecode.androidannotations.test15
## 116 com.googlecode.androidannotations.test15
## 117 com.googlecode.androidannotations.test15
## 118 com.googlecode.androidannotations.test15
## 119 com.googlecode.androidannotations.test15
## 120 com.googlecode.androidannotations.test15
## 121 com.googlecode.androidannotations.test15
## 122 com.googlecode.androidannotations.test15
## 123 com.googlecode.androidannotations.test15
## 124 com.googlecode.androidannotations.test15
## 125 com.googlecode.androidannotations.test15
## 126 com.googlecode.androidannotations.test15
## 127 com.googlecode.androidannotations.test15
## 128 com.googlecode.androidannotations.test15
## 129 com.googlecode.androidannotations.test15
## 130 com.googlecode.androidannotations.test15
## 131 com.googlecode.androidannotations.test15
## 132 com.googlecode.androidannotations.test15
## 133 com.googlecode.androidannotations.test15
## 134 com.googlecode.androidannotations.test15
## 135 com.googlecode.androidannotations.test15
## 136 com.googlecode.androidannotations.test15.menu
## 137 com.googlecode.androidannotations.test15.menu
## 138 com.googlecode.androidannotations.test15.prefs
## 139 com.googlecode.androidannotations.test15.prefs
## 140 com.googlecode.androidannotations.test15.prefs
## 141 com.googlecode.androidannotations.test15.prefs
## 142 com.googlecode.androidannotations.test15.res
## 143 com.googlecode.androidannotations.test15.res
## 144 com.googlecode.androidannotations.test15.res
## 145 com.googlecode.androidannotations.test15.res
## 146 com.googlecode.androidannotations.test15.roboguice
## 147 com.googlecode.androidannotations.test15.roboguice
## 148 com.googlecode.androidannotations.test15
## 149 com.googlecode.androidannotations.test15
## 150 com.googlecode.androidannotations.test15
## 151 com.googlecode.androidannotations.test15
## 152 com.googlecode.androidannotations.test15
## 153 com.googlecode.androidannotations.test15
## 154 com.googlecode.androidannotations.test15
## 155 com.googlecode.androidannotations.test15
## 156 com.googlecode.androidannotations.test15
## 157 com.googlecode.androidannotations.test15
## 158 com.googlecode.androidannotations.test15
## 159 com.googlecode.androidannotations.test15
## 160 com.googlecode.androidannotations.test15
## 161 com.googlecode.androidannotations.test15
## 162 com.googlecode.androidannotations.test15
## 163 com.googlecode.androidannotations.test15
## 164 com.googlecode.androidannotations.test15
## 165 com.googlecode.androidannotations.test15
## 166 com.googlecode.androidannotations.test15
## 167 com.googlecode.androidannotations.test15
## 168 com.googlecode.androidannotations.test15
## 169 com.googlecode.androidannotations.test15
## 170 com.googlecode.androidannotations.test15
## 171 com.googlecode.androidannotations.test15
## 172 com.googlecode.androidannotations.test15
## 173 com.googlecode.androidannotations.test15
## 174 com.googlecode.androidannotations.test15
## 175 com.googlecode.androidannotations.test15
## 176 com.googlecode.androidannotations.test15
## 177 com.googlecode.androidannotations.test15
## 178 com.googlecode.androidannotations.test15
## 179 com.googlecode.androidannotations.test15
## 180 com.googlecode.androidannotations.test15.menu
## 181 com.googlecode.androidannotations.test15.menu
## 182 com.googlecode.androidannotations.test15.prefs
## 183 com.googlecode.androidannotations.test15.prefs
## 184 com.googlecode.androidannotations.test15.prefs
## 185 com.googlecode.androidannotations.test15.prefs
## 186 com.googlecode.androidannotations.test15.res
## 187 com.googlecode.androidannotations.test15.res
## 188 com.googlecode.androidannotations.test15.res
## 189 com.googlecode.androidannotations.test15.res
## 190 com.googlecode.androidannotations.test15.roboguice
## 191 com.googlecode.androidannotations.test15.roboguice
## 192 com.googlecode.androidannotations.test15
## 193 com.googlecode.androidannotations.test15
## 194 com.googlecode.androidannotations.test15
## 195 com.googlecode.androidannotations.test15
## 196 com.googlecode.androidannotations.test15
## 197 com.googlecode.androidannotations.test15
## 198 com.googlecode.androidannotations.test15
## 199 com.googlecode.androidannotations.test15
## 200 com.googlecode.androidannotations.test15
## 201 com.googlecode.androidannotations.test15
## 202 com.googlecode.androidannotations.test15
## 203 com.googlecode.androidannotations.test15
## 204 com.googlecode.androidannotations.test15
## 205 com.googlecode.androidannotations.test15
## 206 com.googlecode.androidannotations.test15
## 207 com.googlecode.androidannotations.test15
## 208 com.googlecode.androidannotations.test15
## 209 com.googlecode.androidannotations.test15
## 210 com.googlecode.androidannotations.test15
## 211 com.googlecode.androidannotations.test15
## 212 com.googlecode.androidannotations.test15
## 213 com.googlecode.androidannotations.test15
## 214 com.googlecode.androidannotations.test15
## 215 com.googlecode.androidannotations.test15
## 216 com.googlecode.androidannotations.test15
## 217 com.googlecode.androidannotations.test15
## 218 com.googlecode.androidannotations.test15
## 219 com.googlecode.androidannotations.test15
## 220 com.googlecode.androidannotations.test15
## 221 com.googlecode.androidannotations.test15
## 222 com.googlecode.androidannotations.test15
## 223 com.googlecode.androidannotations.test15
## 224 com.googlecode.androidannotations.test15.prefs
## 225 com.googlecode.androidannotations.test15.prefs
## 226 com.googlecode.androidannotations.test15.prefs
## 227 com.googlecode.androidannotations.test15.prefs
## 228 com.googlecode.androidannotations.test15.res
## 229 com.googlecode.androidannotations.test15.res
## 230 com.googlecode.androidannotations.test15.res
## 231 com.googlecode.androidannotations.test15.res
## 232 com.googlecode.androidannotations.test15
## 233 com.googlecode.androidannotations.test15
## 234 com.googlecode.androidannotations.test15
## 235 com.googlecode.androidannotations.test15
## 236 com.googlecode.androidannotations.test15
## 237 com.googlecode.androidannotations.test15
## 238 com.googlecode.androidannotations.test15
## 239 com.googlecode.androidannotations.test15
## 240 com.googlecode.androidannotations.test15
## 241 com.googlecode.androidannotations.test15
## 242 com.googlecode.androidannotations.test15
## 243 com.googlecode.androidannotations.test15
## 244 com.googlecode.androidannotations.test15
## 245 com.googlecode.androidannotations.test15
## 246 com.googlecode.androidannotations.test15
## 247 com.googlecode.androidannotations.test15
## 248 com.googlecode.androidannotations.test15
## 249 com.googlecode.androidannotations.test15
## 250 com.googlecode.androidannotations.test15
## 251 com.googlecode.androidannotations.test15
## 252 com.googlecode.androidannotations.test15
## 253 com.googlecode.androidannotations.test15
## 254 com.googlecode.androidannotations.test15
## 255 com.googlecode.androidannotations.test15
## 256 com.googlecode.androidannotations.test15
## 257 com.googlecode.androidannotations.test15
## 258 com.googlecode.androidannotations.test15
## 259 com.googlecode.androidannotations.test15
## 260 com.googlecode.androidannotations.test15
## 261 com.googlecode.androidannotations.test15
## 262 com.googlecode.androidannotations.test15
## 263 com.googlecode.androidannotations.test15
## 264 com.googlecode.androidannotations.test15
## 265 com.googlecode.androidannotations.test15
## 266 com.googlecode.androidannotations.test15
## 267 com.googlecode.androidannotations.test15
## 268 com.googlecode.androidannotations.test15
## 269 com.googlecode.androidannotations.test15.menu
## 270 com.googlecode.androidannotations.test15.menu
## 271 com.googlecode.androidannotations.test15.prefs
## 272 com.googlecode.androidannotations.test15.prefs
## 273 com.googlecode.androidannotations.test15.prefs
## 274 com.googlecode.androidannotations.test15.prefs
## 275 com.googlecode.androidannotations.test15.res
## 276 com.googlecode.androidannotations.test15.res
## 277 com.googlecode.androidannotations.test15.res
## 278 com.googlecode.androidannotations.test15.res
## 279 com.googlecode.androidannotations.test15.roboguice
## 280 com.googlecode.androidannotations.test15.roboguice
## 281 com.googlecode.androidannotations.test15
## 282 com.googlecode.androidannotations.test15
## 283 com.googlecode.androidannotations.test15
## 284 com.googlecode.androidannotations.test15
## 285 com.googlecode.androidannotations.test15
## 286 com.googlecode.androidannotations.test15
## 287 com.googlecode.androidannotations.test15
## 288 com.googlecode.androidannotations.test15
## 289 com.googlecode.androidannotations.test15
## 290 com.googlecode.androidannotations.test15
## 291 com.googlecode.androidannotations.test15
## 292 com.googlecode.androidannotations.test15
## 293 com.googlecode.androidannotations.test15
## 294 com.googlecode.androidannotations.test15
## 295 com.googlecode.androidannotations.test15
## 296 com.googlecode.androidannotations.test15
## 297 com.googlecode.androidannotations.test15
## 298 com.googlecode.androidannotations.test15
## 299 com.googlecode.androidannotations.test15
## 300 com.googlecode.androidannotations.test15
## 301 com.googlecode.androidannotations.test15
## 302 com.googlecode.androidannotations.test15
## 303 com.googlecode.androidannotations.test15
## 304 com.googlecode.androidannotations.test15
## 305 com.googlecode.androidannotations.test15
## 306 com.googlecode.androidannotations.test15
## 307 com.googlecode.androidannotations.test15
## 308 com.googlecode.androidannotations.test15
## 309 com.googlecode.androidannotations.test15
## 310 com.googlecode.androidannotations.test15
## 311 com.googlecode.androidannotations.test15
## 312 com.googlecode.androidannotations.test15
## 313 com.googlecode.androidannotations.test15.menu
## 314 com.googlecode.androidannotations.test15.menu
## 315 com.googlecode.androidannotations.test15.prefs
## 316 com.googlecode.androidannotations.test15.prefs
## 317 com.googlecode.androidannotations.test15.prefs
## 318 com.googlecode.androidannotations.test15.prefs
## 319 com.googlecode.androidannotations.test15.res
## 320 com.googlecode.androidannotations.test15.res
## 321 com.googlecode.androidannotations.test15.res
## 322 com.googlecode.androidannotations.test15.res
## 323 com.googlecode.androidannotations.test15.roboguice
## 324 com.googlecode.androidannotations.test15.roboguice
## 325 com.googlecode.androidannotations.test15
## 326 com.googlecode.androidannotations.test15
## 327 com.googlecode.androidannotations.test15
## 328 com.googlecode.androidannotations.test15
## 329 com.googlecode.androidannotations.test15
## 330 com.googlecode.androidannotations.test15
## 331 com.googlecode.androidannotations.test15
## 332 com.googlecode.androidannotations.test15
## 333 com.googlecode.androidannotations.test15
## 334 com.googlecode.androidannotations.test15
## 335 com.googlecode.androidannotations.test15
## 336 com.googlecode.androidannotations.test15
## 337 com.googlecode.androidannotations.test15
## 338 com.googlecode.androidannotations.test15
## 339 com.googlecode.androidannotations.test15
## 340 com.googlecode.androidannotations.test15
## 341 com.googlecode.androidannotations.test15
## 342 com.googlecode.androidannotations.test15
## 343 com.googlecode.androidannotations.test15
## 344 com.googlecode.androidannotations.test15
## 345 com.googlecode.androidannotations.test15
## 346 com.googlecode.androidannotations.test15
## 347 com.googlecode.androidannotations.test15
## 348 com.googlecode.androidannotations.test15
## 349 com.googlecode.androidannotations.test15
## 350 com.googlecode.androidannotations.test15
## 351 com.googlecode.androidannotations.test15
## 352 com.googlecode.androidannotations.test15
## 353 com.googlecode.androidannotations.test15
## 354 com.googlecode.androidannotations.test15
## 355 com.googlecode.androidannotations.test15
## 356 com.googlecode.androidannotations.test15
## 357 com.googlecode.androidannotations.test15
## 358 com.googlecode.androidannotations.test15
## 359 com.googlecode.androidannotations.test15
## 360 com.googlecode.androidannotations.test15
## 361 com.googlecode.androidannotations.test15
## 362 com.googlecode.androidannotations.test15.menu
## 363 com.googlecode.androidannotations.test15.menu
## 364 com.googlecode.androidannotations.test15.prefs
## 365 com.googlecode.androidannotations.test15.prefs
## 366 com.googlecode.androidannotations.test15.prefs
## 367 com.googlecode.androidannotations.test15.prefs
## 368 com.googlecode.androidannotations.test15.res
## 369 com.googlecode.androidannotations.test15.res
## 370 com.googlecode.androidannotations.test15.res
## 371 com.googlecode.androidannotations.test15.res
## 372 com.googlecode.androidannotations.test15.roboguice
## 373 com.googlecode.androidannotations.test15.roboguice
## 374 com.googlecode.androidannotations.test15
## 375 com.googlecode.androidannotations.test15
## 376 com.googlecode.androidannotations.test15
## 377 com.googlecode.androidannotations.test15
## 378 com.googlecode.androidannotations.test15
## 379 com.googlecode.androidannotations.test15
## 380 com.googlecode.androidannotations.test15
## 381 com.googlecode.androidannotations.test15
## 382 com.googlecode.androidannotations.test15
## 383 com.googlecode.androidannotations.test15
## 384 com.googlecode.androidannotations.test15
## 385 com.googlecode.androidannotations.test15
## 386 com.googlecode.androidannotations.test15
## 387 com.googlecode.androidannotations.test15
## 388 com.googlecode.androidannotations.test15
## 389 com.googlecode.androidannotations.test15
## 390 com.googlecode.androidannotations.test15
## 391 com.googlecode.androidannotations.test15
## 392 com.googlecode.androidannotations.test15
## 393 com.googlecode.androidannotations.test15
## 394 com.googlecode.androidannotations.test15
## 395 com.googlecode.androidannotations.test15
## 396 com.googlecode.androidannotations.test15
## 397 com.googlecode.androidannotations.test15
## 398 com.googlecode.androidannotations.test15
## 399 com.googlecode.androidannotations.test15
## 400 com.googlecode.androidannotations.test15
## 401 com.googlecode.androidannotations.test15
## 402 com.googlecode.androidannotations.test15
## 403 com.googlecode.androidannotations.test15
## 404 com.googlecode.androidannotations.test15
## 405 com.googlecode.androidannotations.test15
## 406 com.googlecode.androidannotations.test15
## 407 com.googlecode.androidannotations.test15
## 408 com.googlecode.androidannotations.test15
## 409 com.googlecode.androidannotations.test15.menu
## 410 com.googlecode.androidannotations.test15.menu
## 411 com.googlecode.androidannotations.test15.prefs
## 412 com.googlecode.androidannotations.test15.prefs
## 413 com.googlecode.androidannotations.test15.prefs
## 414 com.googlecode.androidannotations.test15.prefs
## 415 com.googlecode.androidannotations.test15.res
## 416 com.googlecode.androidannotations.test15.res
## 417 com.googlecode.androidannotations.test15.res
## 418 com.googlecode.androidannotations.test15.res
## 419 com.googlecode.androidannotations.test15.roboguice
## 420 com.googlecode.androidannotations.test15.roboguice
## 421 com.googlecode.androidannotations.test15
## 422 com.googlecode.androidannotations.test15
## 423 com.googlecode.androidannotations.test15
## 424 com.googlecode.androidannotations.test15
## 425 com.googlecode.androidannotations.test15
## 426 com.googlecode.androidannotations.test15
## 427 com.googlecode.androidannotations.test15
## 428 com.googlecode.androidannotations.test15
## 429 com.googlecode.androidannotations.test15
## 430 com.googlecode.androidannotations.test15
## 431 com.googlecode.androidannotations.test15
## 432 com.googlecode.androidannotations.test15
## 433 com.googlecode.androidannotations.test15
## 434 com.googlecode.androidannotations.test15
## 435 com.googlecode.androidannotations.test15
## 436 com.googlecode.androidannotations.test15
## 437 com.googlecode.androidannotations.test15
## 438 com.googlecode.androidannotations.test15
## 439 com.googlecode.androidannotations.test15
## 440 com.googlecode.androidannotations.test15
## 441 com.googlecode.androidannotations.test15
## 442 com.googlecode.androidannotations.test15
## 443 com.googlecode.androidannotations.test15
## 444 com.googlecode.androidannotations.test15
## 445 com.googlecode.androidannotations.test15
## 446 com.googlecode.androidannotations.test15
## 447 com.googlecode.androidannotations.test15
## 448 com.googlecode.androidannotations.test15
## 449 com.googlecode.androidannotations.test15
## 450 com.googlecode.androidannotations.test15
## 451 com.googlecode.androidannotations.test15
## 452 com.googlecode.androidannotations.test15
## 453 com.googlecode.androidannotations.test15
## 454 com.googlecode.androidannotations.test15
## 455 com.googlecode.androidannotations.test15
## 456 com.googlecode.androidannotations.test15.menu
## 457 com.googlecode.androidannotations.test15.menu
## 458 com.googlecode.androidannotations.test15.prefs
## 459 com.googlecode.androidannotations.test15.prefs
## 460 com.googlecode.androidannotations.test15.prefs
## 461 com.googlecode.androidannotations.test15.prefs
## 462 com.googlecode.androidannotations.test15.res
## 463 com.googlecode.androidannotations.test15.res
## 464 com.googlecode.androidannotations.test15.res
## 465 com.googlecode.androidannotations.test15.res
## 466 com.googlecode.androidannotations.test15.roboguice
## 467 com.googlecode.androidannotations.test15.roboguice
## 468 org.androidannotations.helper
## 469 org.androidannotations.helper
## 470 org.androidannotations.test15
## 471 org.androidannotations.test15
## 472 org.androidannotations.test15
## 473 org.androidannotations.test15
## 474 org.androidannotations.test15
## 475 org.androidannotations.test15
## 476 org.androidannotations.test15
## 477 org.androidannotations.test15
## 478 org.androidannotations.test15
## 479 org.androidannotations.test15
## 480 org.androidannotations.test15
## 481 org.androidannotations.test15
## 482 org.androidannotations.test15
## 483 org.androidannotations.test15
## 484 org.androidannotations.test15
## 485 org.androidannotations.test15
## 486 org.androidannotations.test15
## 487 org.androidannotations.test15
## 488 org.androidannotations.test15
## 489 org.androidannotations.test15
## 490 org.androidannotations.test15
## 491 org.androidannotations.test15
## 492 org.androidannotations.test15
## 493 org.androidannotations.test15
## 494 org.androidannotations.test15
## 495 org.androidannotations.test15
## 496 org.androidannotations.test15
## 497 org.androidannotations.test15
## 498 org.androidannotations.test15
## 499 org.androidannotations.test15
## 500 org.androidannotations.test15
## 501 org.androidannotations.test15
## 502 org.androidannotations.test15
## 503 org.androidannotations.test15
## 504 org.androidannotations.test15
## 505 org.androidannotations.test15
## 506 org.androidannotations.test15
## 507 org.androidannotations.test15
## 508 org.androidannotations.test15
## 509 org.androidannotations.test15
## 510 org.androidannotations.test15
## 511 org.androidannotations.test15
## 512 org.androidannotations.test15
## 513 org.androidannotations.test15
## 514 org.androidannotations.test15
## 515 org.androidannotations.test15
## 516 org.androidannotations.test15
## 517 org.androidannotations.test15
## 518 org.androidannotations.test15
## 519 org.androidannotations.test15
## 520 org.androidannotations.test15
## 521 org.androidannotations.test15
## 522 org.androidannotations.test15.afterinject
## 523 org.androidannotations.test15.afterinject
## 524 org.androidannotations.test15.afterinject
## 525 org.androidannotations.test15.afterinject
## 526 org.androidannotations.test15.afterinject
## 527 org.androidannotations.test15.afterinject
## 528 org.androidannotations.test15.afterviews
## 529 org.androidannotations.test15.afterviews
## 530 org.androidannotations.test15.afterviews
## 531 org.androidannotations.test15.afterviews
## 532 org.androidannotations.test15.ebean
## 533 org.androidannotations.test15.ebean
## 534 org.androidannotations.test15.ebean
## 535 org.androidannotations.test15.ebean
## 536 org.androidannotations.test15.ebean
## 537 org.androidannotations.test15.ebean
## 538 org.androidannotations.test15.ebean
## 539 org.androidannotations.test15.ebean
## 540 org.androidannotations.test15.ebean
## 541 org.androidannotations.test15.ebean
## 542 org.androidannotations.test15.ebean
## 543 org.androidannotations.test15.ebean
## 544 org.androidannotations.test15.ebean
## 545 org.androidannotations.test15.ebean
## 546 org.androidannotations.test15.efragment
## 547 org.androidannotations.test15.efragment
## 548 org.androidannotations.test15.efragment
## 549 org.androidannotations.test15.efragment
## 550 org.androidannotations.test15.efragment
## 551 org.androidannotations.test15.efragment
## 552 org.androidannotations.test15.efragment
## 553 org.androidannotations.test15.efragment
## 554 org.androidannotations.test15.efragment
## 555 org.androidannotations.test15.efragment
## 556 org.androidannotations.test15.efragment
## 557 org.androidannotations.test15.efragment
## 558 org.androidannotations.test15.efragment
## 559 org.androidannotations.test15.efragment
## 560 org.androidannotations.test15.efragment
## 561 org.androidannotations.test15.efragment
## 562 org.androidannotations.test15.efragment
## 563 org.androidannotations.test15.efragment
## 564 org.androidannotations.test15.eview
## 565 org.androidannotations.test15.eview
## 566 org.androidannotations.test15.instancestate
## 567 org.androidannotations.test15.instancestate
## 568 org.androidannotations.test15.nonconfiguration
## 569 org.androidannotations.test15.nonconfiguration
## 570 org.androidannotations.test15.nonconfiguration
## 571 org.androidannotations.test15.nonconfiguration
## 572 org.androidannotations.test15.ormlite
## 573 org.androidannotations.test15.ormlite
## 574 org.androidannotations.test15.ormlite
## 575 org.androidannotations.test15.ormlite
## 576 org.androidannotations.test15.prefs
## 577 org.androidannotations.test15.prefs
## 578 org.androidannotations.test15.prefs
## 579 org.androidannotations.test15.prefs
## 580 org.androidannotations.test15.res
## 581 org.androidannotations.test15.res
## 582 org.androidannotations.test15.res
## 583 org.androidannotations.test15.res
## 584 org.androidannotations.test15.rest
## 585 org.androidannotations.test15.rest
## 586 org.androidannotations.test15.roboguice
## 587 org.androidannotations.test15.roboguice
## 588 org.androidannotations.test15.sherlock
## 589 org.androidannotations.test15.sherlock
## 590 org.androidannotations.helper
## 591 org.androidannotations.helper
## 592 org.androidannotations.logger.formatter
## 593 org.androidannotations.logger.formatter
## 594 org.androidannotations.logger.formatter
## 595 org.androidannotations.logger.formatter
## 596 org.androidannotations.logger.formatter
## 597 org.androidannotations.logger.formatter
## 598 org.androidannotations.logger.formatter
## 599 org.androidannotations.logger.formatter
## 600 org.androidannotations.logger.formatter
## 601 org.androidannotations.logger.formatter
## 602 org.androidannotations.logger.formatter
## 603 org.androidannotations.logger.formatter
## 604 org.androidannotations.logger.formatter
## 605 org.androidannotations.logger.formatter
## 606 org.androidannotations.logger
## 607 org.androidannotations.logger
## 608 org.androidannotations.logger
## 609 org.androidannotations.logger
## 610 org.androidannotations.logger
## 611 org.androidannotations.logger
## 612 org.androidannotations.logger
## 613 org.androidannotations.logger
## 614 org.androidannotations.logger
## 615 org.androidannotations.logger
## 616 org.androidannotations.logger
## 617 org.androidannotations.logger
## 618 org.androidannotations.logger
## 619 org.androidannotations.logger
## 620 org.androidannotations.test15
## 621 org.androidannotations.test15
## 622 org.androidannotations.test15
## 623 org.androidannotations.test15
## 624 org.androidannotations.test15
## 625 org.androidannotations.test15
## 626 org.androidannotations.test15
## 627 org.androidannotations.test15
## 628 org.androidannotations.test15
## 629 org.androidannotations.test15
## 630 org.androidannotations.test15
## 631 org.androidannotations.test15
## 632 org.androidannotations.test15
## 633 org.androidannotations.test15
## 634 org.androidannotations.test15
## 635 org.androidannotations.test15
## 636 org.androidannotations.test15
## 637 org.androidannotations.test15
## 638 org.androidannotations.test15
## 639 org.androidannotations.test15
## 640 org.androidannotations.test15
## 641 org.androidannotations.test15
## 642 org.androidannotations.test15
## 643 org.androidannotations.test15
## 644 org.androidannotations.test15
## 645 org.androidannotations.test15
## 646 org.androidannotations.test15
## 647 org.androidannotations.test15
## 648 org.androidannotations.test15
## 649 org.androidannotations.test15
## 650 org.androidannotations.test15
## 651 org.androidannotations.test15
## 652 org.androidannotations.test15
## 653 org.androidannotations.test15
## 654 org.androidannotations.test15
## 655 org.androidannotations.test15
## 656 org.androidannotations.test15
## 657 org.androidannotations.test15
## 658 org.androidannotations.test15
## 659 org.androidannotations.test15
## 660 org.androidannotations.test15
## 661 org.androidannotations.test15
## 662 org.androidannotations.test15
## 663 org.androidannotations.test15
## 664 org.androidannotations.test15
## 665 org.androidannotations.test15
## 666 org.androidannotations.test15
## 667 org.androidannotations.test15
## 668 org.androidannotations.test15
## 669 org.androidannotations.test15
## 670 org.androidannotations.test15
## 671 org.androidannotations.test15
## 672 org.androidannotations.test15.afterinject
## 673 org.androidannotations.test15.afterinject
## 674 org.androidannotations.test15.afterinject
## 675 org.androidannotations.test15.afterinject
## 676 org.androidannotations.test15.afterinject
## 677 org.androidannotations.test15.afterinject
## 678 org.androidannotations.test15.afterviews
## 679 org.androidannotations.test15.afterviews
## 680 org.androidannotations.test15.afterviews
## 681 org.androidannotations.test15.afterviews
## 682 org.androidannotations.test15.ebean
## 683 org.androidannotations.test15.ebean
## 684 org.androidannotations.test15.ebean
## 685 org.androidannotations.test15.ebean
## 686 org.androidannotations.test15.ebean
## 687 org.androidannotations.test15.ebean
## 688 org.androidannotations.test15.ebean
## 689 org.androidannotations.test15.ebean
## 690 org.androidannotations.test15.ebean
## 691 org.androidannotations.test15.ebean
## 692 org.androidannotations.test15.ebean
## 693 org.androidannotations.test15.ebean
## 694 org.androidannotations.test15.ebean
## 695 org.androidannotations.test15.ebean
## 696 org.androidannotations.test15.efragment
## 697 org.androidannotations.test15.efragment
## 698 org.androidannotations.test15.efragment
## 699 org.androidannotations.test15.efragment
## 700 org.androidannotations.test15.efragment
## 701 org.androidannotations.test15.efragment
## 702 org.androidannotations.test15.efragment
## 703 org.androidannotations.test15.efragment
## 704 org.androidannotations.test15.efragment
## 705 org.androidannotations.test15.efragment
## 706 org.androidannotations.test15.efragment
## 707 org.androidannotations.test15.efragment
## 708 org.androidannotations.test15.efragment
## 709 org.androidannotations.test15.efragment
## 710 org.androidannotations.test15.efragment
## 711 org.androidannotations.test15.efragment
## 712 org.androidannotations.test15.efragment
## 713 org.androidannotations.test15.efragment
## 714 org.androidannotations.test15.eview
## 715 org.androidannotations.test15.eview
## 716 org.androidannotations.test15.instancestate
## 717 org.androidannotations.test15.instancestate
## 718 org.androidannotations.test15.nonconfiguration
## 719 org.androidannotations.test15.nonconfiguration
## 720 org.androidannotations.test15.nonconfiguration
## 721 org.androidannotations.test15.nonconfiguration
## 722 org.androidannotations.test15.ormlite
## 723 org.androidannotations.test15.ormlite
## 724 org.androidannotations.test15.ormlite
## 725 org.androidannotations.test15.ormlite
## 726 org.androidannotations.test15.prefs
## 727 org.androidannotations.test15.prefs
## 728 org.androidannotations.test15.prefs
## 729 org.androidannotations.test15.prefs
## 730 org.androidannotations.test15.res
## 731 org.androidannotations.test15.res
## 732 org.androidannotations.test15.res
## 733 org.androidannotations.test15.res
## 734 org.androidannotations.test15.rest
## 735 org.androidannotations.test15.rest
## 736 org.androidannotations.test15.roboguice
## 737 org.androidannotations.test15.roboguice
## 738 org.androidannotations.test15.sherlock
## 739 org.androidannotations.test15.sherlock
## 740 org.androidannotations.helper
## 741 org.androidannotations.helper
## 742 org.androidannotations.helper
## 743 org.androidannotations.helper
## 744 org.androidannotations.helper
## 745 org.androidannotations.helper
## 746 org.androidannotations.helper
## 747 org.androidannotations.helper
## 748 org.androidannotations.helper
## 749 org.androidannotations.helper
## 750 org.androidannotations.helper
## 751 org.androidannotations.helper
## 752 org.androidannotations.helper
## 753 org.androidannotations.helper
## 754 org.androidannotations.logger.formatter
## 755 org.androidannotations.logger.formatter
## 756 org.androidannotations.logger.formatter
## 757 org.androidannotations.logger.formatter
## 758 org.androidannotations.logger.formatter
## 759 org.androidannotations.logger.formatter
## 760 org.androidannotations.logger.formatter
## 761 org.androidannotations.logger.formatter
## 762 org.androidannotations.logger.formatter
## 763 org.androidannotations.logger.formatter
## 764 org.androidannotations.logger.formatter
## 765 org.androidannotations.logger.formatter
## 766 org.androidannotations.logger.formatter
## 767 org.androidannotations.logger.formatter
## 768 org.androidannotations.logger
## 769 org.androidannotations.logger
## 770 org.androidannotations.logger
## 771 org.androidannotations.logger
## 772 org.androidannotations.logger
## 773 org.androidannotations.logger
## 774 org.androidannotations.logger
## 775 org.androidannotations.logger
## 776 org.androidannotations.logger
## 777 org.androidannotations.logger
## 778 org.androidannotations.logger
## 779 org.androidannotations.logger
## 780 org.androidannotations.logger
## 781 org.androidannotations.logger
## 782 org.androidannotations.test15
## 783 org.androidannotations.test15
## 784 org.androidannotations.test15
## 785 org.androidannotations.test15
## 786 org.androidannotations.test15
## 787 org.androidannotations.test15
## 788 org.androidannotations.test15
## 789 org.androidannotations.test15
## 790 org.androidannotations.test15
## 791 org.androidannotations.test15
## 792 org.androidannotations.test15
## 793 org.androidannotations.test15
## 794 org.androidannotations.test15
## 795 org.androidannotations.test15
## 796 org.androidannotations.test15
## 797 org.androidannotations.test15
## 798 org.androidannotations.test15
## 799 org.androidannotations.test15
## 800 org.androidannotations.test15
## 801 org.androidannotations.test15
## 802 org.androidannotations.test15
## 803 org.androidannotations.test15
## 804 org.androidannotations.test15
## 805 org.androidannotations.test15
## 806 org.androidannotations.test15
## 807 org.androidannotations.test15
## 808 org.androidannotations.test15
## 809 org.androidannotations.test15
## 810 org.androidannotations.test15
## 811 org.androidannotations.test15
## 812 org.androidannotations.test15
## 813 org.androidannotations.test15
## 814 org.androidannotations.test15
## 815 org.androidannotations.test15
## 816 org.androidannotations.test15
## 817 org.androidannotations.test15
## 818 org.androidannotations.test15
## 819 org.androidannotations.test15
## 820 org.androidannotations.test15
## 821 org.androidannotations.test15
## 822 org.androidannotations.test15
## 823 org.androidannotations.test15
## 824 org.androidannotations.test15
## 825 org.androidannotations.test15
## 826 org.androidannotations.test15
## 827 org.androidannotations.test15
## 828 org.androidannotations.test15
## 829 org.androidannotations.test15
## 830 org.androidannotations.test15
## 831 org.androidannotations.test15
## 832 org.androidannotations.test15
## 833 org.androidannotations.test15
## 834 org.androidannotations.test15.afterextras
## 835 org.androidannotations.test15.afterextras
## 836 org.androidannotations.test15.afterextras
## 837 org.androidannotations.test15.afterextras
## 838 org.androidannotations.test15.afterinject
## 839 org.androidannotations.test15.afterinject
## 840 org.androidannotations.test15.afterinject
## 841 org.androidannotations.test15.afterinject
## 842 org.androidannotations.test15.afterinject
## 843 org.androidannotations.test15.afterinject
## 844 org.androidannotations.test15.afterviews
## 845 org.androidannotations.test15.afterviews
## 846 org.androidannotations.test15.afterviews
## 847 org.androidannotations.test15.afterviews
## 848 org.androidannotations.test15.ebean
## 849 org.androidannotations.test15.ebean
## 850 org.androidannotations.test15.ebean
## 851 org.androidannotations.test15.ebean
## 852 org.androidannotations.test15.ebean
## 853 org.androidannotations.test15.ebean
## 854 org.androidannotations.test15.ebean
## 855 org.androidannotations.test15.ebean
## 856 org.androidannotations.test15.ebean
## 857 org.androidannotations.test15.ebean
## 858 org.androidannotations.test15.ebean
## 859 org.androidannotations.test15.ebean
## 860 org.androidannotations.test15.ebean
## 861 org.androidannotations.test15.ebean
## 862 org.androidannotations.test15.efragment
## 863 org.androidannotations.test15.efragment
## 864 org.androidannotations.test15.efragment
## 865 org.androidannotations.test15.efragment
## 866 org.androidannotations.test15.efragment
## 867 org.androidannotations.test15.efragment
## 868 org.androidannotations.test15.efragment
## 869 org.androidannotations.test15.efragment
## 870 org.androidannotations.test15.efragment
## 871 org.androidannotations.test15.efragment
## 872 org.androidannotations.test15.efragment
## 873 org.androidannotations.test15.efragment
## 874 org.androidannotations.test15.efragment
## 875 org.androidannotations.test15.efragment
## 876 org.androidannotations.test15.efragment
## 877 org.androidannotations.test15.efragment
## 878 org.androidannotations.test15.efragment
## 879 org.androidannotations.test15.efragment
## 880 org.androidannotations.test15.eview
## 881 org.androidannotations.test15.eview
## 882 org.androidannotations.test15.instancestate
## 883 org.androidannotations.test15.instancestate
## 884 org.androidannotations.test15.nonconfiguration
## 885 org.androidannotations.test15.nonconfiguration
## 886 org.androidannotations.test15.nonconfiguration
## 887 org.androidannotations.test15.nonconfiguration
## 888 org.androidannotations.test15.ormlite
## 889 org.androidannotations.test15.ormlite
## 890 org.androidannotations.test15.ormlite
## 891 org.androidannotations.test15.ormlite
## 892 org.androidannotations.test15.prefs
## 893 org.androidannotations.test15.prefs
## 894 org.androidannotations.test15.prefs
## 895 org.androidannotations.test15.prefs
## 896 org.androidannotations.test15.receiver
## 897 org.androidannotations.test15.receiver
## 898 org.androidannotations.test15.receiver
## 899 org.androidannotations.test15.receiver
## 900 org.androidannotations.test15.res
## 901 org.androidannotations.test15.res
## 902 org.androidannotations.test15.res
## 903 org.androidannotations.test15.res
## 904 org.androidannotations.test15.rest
## 905 org.androidannotations.test15.rest
## 906 org.androidannotations.test15.sherlock
## 907 org.androidannotations.test15.sherlock
## 908 org.androidannotations.test15.trace
## 909 org.androidannotations.test15.trace
## 910 org.androidannotations.test15.trace
## 911 org.androidannotations.test15.trace
## 912 org.androidannotations.helper
## 913 org.androidannotations.helper
## 914 org.androidannotations.helper
## 915 org.androidannotations.helper
## 916 org.androidannotations.helper
## 917 org.androidannotations.helper
## 918 org.androidannotations.helper
## 919 org.androidannotations.helper
## 920 org.androidannotations.helper
## 921 org.androidannotations.helper
## 922 org.androidannotations.helper
## 923 org.androidannotations.helper
## 924 org.androidannotations.helper
## 925 org.androidannotations.helper
## 926 org.androidannotations.logger.formatter
## 927 org.androidannotations.logger.formatter
## 928 org.androidannotations.logger.formatter
## 929 org.androidannotations.logger.formatter
## 930 org.androidannotations.logger.formatter
## 931 org.androidannotations.logger.formatter
## 932 org.androidannotations.logger.formatter
## 933 org.androidannotations.logger.formatter
## 934 org.androidannotations.logger.formatter
## 935 org.androidannotations.logger.formatter
## 936 org.androidannotations.logger.formatter
## 937 org.androidannotations.logger.formatter
## 938 org.androidannotations.logger.formatter
## 939 org.androidannotations.logger.formatter
## 940 org.androidannotations.logger
## 941 org.androidannotations.logger
## 942 org.androidannotations.logger
## 943 org.androidannotations.logger
## 944 org.androidannotations.logger
## 945 org.androidannotations.logger
## 946 org.androidannotations.logger
## 947 org.androidannotations.logger
## 948 org.androidannotations.logger
## 949 org.androidannotations.logger
## 950 org.androidannotations.logger
## 951 org.androidannotations.logger
## 952 org.androidannotations.logger
## 953 org.androidannotations.logger
## 954 org.androidannotations.test15
## 955 org.androidannotations.test15
## 956 org.androidannotations.test15
## 957 org.androidannotations.test15
## 958 org.androidannotations.test15
## 959 org.androidannotations.test15
## 960 org.androidannotations.test15
## 961 org.androidannotations.test15
## 962 org.androidannotations.test15
## 963 org.androidannotations.test15
## 964 org.androidannotations.test15
## 965 org.androidannotations.test15
## 966 org.androidannotations.test15
## 967 org.androidannotations.test15
## 968 org.androidannotations.test15
## 969 org.androidannotations.test15
## 970 org.androidannotations.test15
## 971 org.androidannotations.test15
## 972 org.androidannotations.test15
## 973 org.androidannotations.test15
## 974 org.androidannotations.test15
## 975 org.androidannotations.test15
## 976 org.androidannotations.test15
## 977 org.androidannotations.test15
## 978 org.androidannotations.test15
## 979 org.androidannotations.test15
## 980 org.androidannotations.test15
## 981 org.androidannotations.test15
## 982 org.androidannotations.test15
## 983 org.androidannotations.test15
## 984 org.androidannotations.test15
## 985 org.androidannotations.test15
## 986 org.androidannotations.test15
## 987 org.androidannotations.test15
## 988 org.androidannotations.test15
## 989 org.androidannotations.test15
## 990 org.androidannotations.test15
## 991 org.androidannotations.test15
## 992 org.androidannotations.test15
## 993 org.androidannotations.test15
## 994 org.androidannotations.test15
## 995 org.androidannotations.test15
## 996 org.androidannotations.test15
## 997 org.androidannotations.test15
## 998 org.androidannotations.test15
## 999 org.androidannotations.test15
## 1000 org.androidannotations.test15
## 1001 org.androidannotations.test15
## 1002 org.androidannotations.test15
## 1003 org.androidannotations.test15
## 1004 org.androidannotations.test15
## 1005 org.androidannotations.test15
## 1006 org.androidannotations.test15.afterextras
## 1007 org.androidannotations.test15.afterextras
## 1008 org.androidannotations.test15.afterextras
## 1009 org.androidannotations.test15.afterextras
## 1010 org.androidannotations.test15.afterinject
## 1011 org.androidannotations.test15.afterinject
## 1012 org.androidannotations.test15.afterinject
## 1013 org.androidannotations.test15.afterinject
## 1014 org.androidannotations.test15.afterinject
## 1015 org.androidannotations.test15.afterinject
## 1016 org.androidannotations.test15.afterviews
## 1017 org.androidannotations.test15.afterviews
## 1018 org.androidannotations.test15.afterviews
## 1019 org.androidannotations.test15.afterviews
## 1020 org.androidannotations.test15.ebean
## 1021 org.androidannotations.test15.ebean
## 1022 org.androidannotations.test15.ebean
## 1023 org.androidannotations.test15.ebean
## 1024 org.androidannotations.test15.ebean
## 1025 org.androidannotations.test15.ebean
## 1026 org.androidannotations.test15.ebean
## 1027 org.androidannotations.test15.ebean
## 1028 org.androidannotations.test15.ebean
## 1029 org.androidannotations.test15.ebean
## 1030 org.androidannotations.test15.ebean
## 1031 org.androidannotations.test15.ebean
## 1032 org.androidannotations.test15.ebean
## 1033 org.androidannotations.test15.ebean
## 1034 org.androidannotations.test15.efragment
## 1035 org.androidannotations.test15.efragment
## 1036 org.androidannotations.test15.efragment
## 1037 org.androidannotations.test15.efragment
## 1038 org.androidannotations.test15.efragment
## 1039 org.androidannotations.test15.efragment
## 1040 org.androidannotations.test15.efragment
## 1041 org.androidannotations.test15.efragment
## 1042 org.androidannotations.test15.efragment
## 1043 org.androidannotations.test15.efragment
## 1044 org.androidannotations.test15.efragment
## 1045 org.androidannotations.test15.efragment
## 1046 org.androidannotations.test15.efragment
## 1047 org.androidannotations.test15.efragment
## 1048 org.androidannotations.test15.efragment
## 1049 org.androidannotations.test15.efragment
## 1050 org.androidannotations.test15.efragment
## 1051 org.androidannotations.test15.efragment
## 1052 org.androidannotations.test15.eview
## 1053 org.androidannotations.test15.eview
## 1054 org.androidannotations.test15.instancestate
## 1055 org.androidannotations.test15.instancestate
## 1056 org.androidannotations.test15.nonconfiguration
## 1057 org.androidannotations.test15.nonconfiguration
## 1058 org.androidannotations.test15.nonconfiguration
## 1059 org.androidannotations.test15.nonconfiguration
## 1060 org.androidannotations.test15.ormlite
## 1061 org.androidannotations.test15.ormlite
## 1062 org.androidannotations.test15.ormlite
## 1063 org.androidannotations.test15.ormlite
## 1064 org.androidannotations.test15.prefs
## 1065 org.androidannotations.test15.prefs
## 1066 org.androidannotations.test15.prefs
## 1067 org.androidannotations.test15.prefs
## 1068 org.androidannotations.test15.receiver
## 1069 org.androidannotations.test15.receiver
## 1070 org.androidannotations.test15.receiver
## 1071 org.androidannotations.test15.receiver
## 1072 org.androidannotations.test15.res
## 1073 org.androidannotations.test15.res
## 1074 org.androidannotations.test15.res
## 1075 org.androidannotations.test15.res
## 1076 org.androidannotations.test15.rest
## 1077 org.androidannotations.test15.rest
## 1078 org.androidannotations.test15.sherlock
## 1079 org.androidannotations.test15.sherlock
## 1080 org.androidannotations.test15.trace
## 1081 org.androidannotations.test15.trace
## 1082 org.androidannotations.test15.trace
## 1083 org.androidannotations.test15.trace
## 1084 org.androidannotations.helper
## 1085 org.androidannotations.helper
## 1086 org.androidannotations.helper
## 1087 org.androidannotations.helper
## 1088 org.androidannotations.helper
## 1089 org.androidannotations.helper
## 1090 org.androidannotations.helper
## 1091 org.androidannotations.helper
## 1092 org.androidannotations.helper
## 1093 org.androidannotations.helper
## 1094 org.androidannotations.helper
## 1095 org.androidannotations.helper
## 1096 org.androidannotations.helper
## 1097 org.androidannotations.helper
## 1098 org.androidannotations.logger.formatter
## 1099 org.androidannotations.logger.formatter
## 1100 org.androidannotations.logger.formatter
## 1101 org.androidannotations.logger.formatter
## 1102 org.androidannotations.logger.formatter
## 1103 org.androidannotations.logger.formatter
## 1104 org.androidannotations.logger.formatter
## 1105 org.androidannotations.logger.formatter
## 1106 org.androidannotations.logger.formatter
## 1107 org.androidannotations.logger.formatter
## 1108 org.androidannotations.logger.formatter
## 1109 org.androidannotations.logger.formatter
## 1110 org.androidannotations.logger.formatter
## 1111 org.androidannotations.logger.formatter
## 1112 org.androidannotations.logger
## 1113 org.androidannotations.logger
## 1114 org.androidannotations.logger
## 1115 org.androidannotations.logger
## 1116 org.androidannotations.logger
## 1117 org.androidannotations.logger
## 1118 org.androidannotations.logger
## 1119 org.androidannotations.logger
## 1120 org.androidannotations.logger
## 1121 org.androidannotations.logger
## 1122 org.androidannotations.logger
## 1123 org.androidannotations.logger
## 1124 org.androidannotations.logger
## 1125 org.androidannotations.logger
## 1126 org.androidannotations.test15
## 1127 org.androidannotations.test15
## 1128 org.androidannotations.test15
## 1129 org.androidannotations.test15
## 1130 org.androidannotations.test15
## 1131 org.androidannotations.test15
## 1132 org.androidannotations.test15
## 1133 org.androidannotations.test15
## 1134 org.androidannotations.test15
## 1135 org.androidannotations.test15
## 1136 org.androidannotations.test15
## 1137 org.androidannotations.test15
## 1138 org.androidannotations.test15
## 1139 org.androidannotations.test15
## 1140 org.androidannotations.test15
## 1141 org.androidannotations.test15
## 1142 org.androidannotations.test15
## 1143 org.androidannotations.test15
## 1144 org.androidannotations.test15
## 1145 org.androidannotations.test15
## 1146 org.androidannotations.test15
## 1147 org.androidannotations.test15
## 1148 org.androidannotations.test15
## 1149 org.androidannotations.test15
## 1150 org.androidannotations.test15
## 1151 org.androidannotations.test15
## 1152 org.androidannotations.test15
## 1153 org.androidannotations.test15
## 1154 org.androidannotations.test15
## 1155 org.androidannotations.test15
## 1156 org.androidannotations.test15
## 1157 org.androidannotations.test15
## 1158 org.androidannotations.test15
## 1159 org.androidannotations.test15
## 1160 org.androidannotations.test15
## 1161 org.androidannotations.test15
## 1162 org.androidannotations.test15
## 1163 org.androidannotations.test15
## 1164 org.androidannotations.test15
## 1165 org.androidannotations.test15
## 1166 org.androidannotations.test15
## 1167 org.androidannotations.test15
## 1168 org.androidannotations.test15
## 1169 org.androidannotations.test15
## 1170 org.androidannotations.test15
## 1171 org.androidannotations.test15
## 1172 org.androidannotations.test15
## 1173 org.androidannotations.test15
## 1174 org.androidannotations.test15
## 1175 org.androidannotations.test15
## 1176 org.androidannotations.test15
## 1177 org.androidannotations.test15
## 1178 org.androidannotations.test15.afterextras
## 1179 org.androidannotations.test15.afterextras
## 1180 org.androidannotations.test15.afterextras
## 1181 org.androidannotations.test15.afterextras
## 1182 org.androidannotations.test15.afterinject
## 1183 org.androidannotations.test15.afterinject
## 1184 org.androidannotations.test15.afterinject
## 1185 org.androidannotations.test15.afterinject
## 1186 org.androidannotations.test15.afterinject
## 1187 org.androidannotations.test15.afterinject
## 1188 org.androidannotations.test15.afterviews
## 1189 org.androidannotations.test15.afterviews
## 1190 org.androidannotations.test15.afterviews
## 1191 org.androidannotations.test15.afterviews
## 1192 org.androidannotations.test15.ebean
## 1193 org.androidannotations.test15.ebean
## 1194 org.androidannotations.test15.ebean
## 1195 org.androidannotations.test15.ebean
## 1196 org.androidannotations.test15.ebean
## 1197 org.androidannotations.test15.ebean
## 1198 org.androidannotations.test15.ebean
## 1199 org.androidannotations.test15.ebean
## 1200 org.androidannotations.test15.ebean
## 1201 org.androidannotations.test15.ebean
## 1202 org.androidannotations.test15.ebean
## 1203 org.androidannotations.test15.ebean
## 1204 org.androidannotations.test15.ebean
## 1205 org.androidannotations.test15.ebean
## 1206 org.androidannotations.test15.efragment
## 1207 org.androidannotations.test15.efragment
## 1208 org.androidannotations.test15.efragment
## 1209 org.androidannotations.test15.efragment
## 1210 org.androidannotations.test15.efragment
## 1211 org.androidannotations.test15.efragment
## 1212 org.androidannotations.test15.efragment
## 1213 org.androidannotations.test15.efragment
## 1214 org.androidannotations.test15.efragment
## 1215 org.androidannotations.test15.efragment
## 1216 org.androidannotations.test15.efragment
## 1217 org.androidannotations.test15.efragment
## 1218 org.androidannotations.test15.efragment
## 1219 org.androidannotations.test15.efragment
## 1220 org.androidannotations.test15.efragment
## 1221 org.androidannotations.test15.efragment
## 1222 org.androidannotations.test15.efragment
## 1223 org.androidannotations.test15.efragment
## 1224 org.androidannotations.test15.ereceiver
## 1225 org.androidannotations.test15.ereceiver
## 1226 org.androidannotations.test15.eview
## 1227 org.androidannotations.test15.eview
## 1228 org.androidannotations.test15.instancestate
## 1229 org.androidannotations.test15.instancestate
## 1230 org.androidannotations.test15.nonconfiguration
## 1231 org.androidannotations.test15.nonconfiguration
## 1232 org.androidannotations.test15.nonconfiguration
## 1233 org.androidannotations.test15.nonconfiguration
## 1234 org.androidannotations.test15.ormlite
## 1235 org.androidannotations.test15.ormlite
## 1236 org.androidannotations.test15.ormlite
## 1237 org.androidannotations.test15.ormlite
## 1238 org.androidannotations.test15.prefs
## 1239 org.androidannotations.test15.prefs
## 1240 org.androidannotations.test15.prefs
## 1241 org.androidannotations.test15.prefs
## 1242 org.androidannotations.test15.receiver
## 1243 org.androidannotations.test15.receiver
## 1244 org.androidannotations.test15.receiver
## 1245 org.androidannotations.test15.receiver
## 1246 org.androidannotations.test15.receiver
## 1247 org.androidannotations.test15.receiver
## 1248 org.androidannotations.test15.res
## 1249 org.androidannotations.test15.res
## 1250 org.androidannotations.test15.res
## 1251 org.androidannotations.test15.res
## 1252 org.androidannotations.test15.rest
## 1253 org.androidannotations.test15.rest
## 1254 org.androidannotations.test15.sherlock
## 1255 org.androidannotations.test15.sherlock
## 1256 org.androidannotations.test15.trace
## 1257 org.androidannotations.test15.trace
## 1258 org.androidannotations.test15.trace
## 1259 org.androidannotations.test15.trace
## 1260 org.androidannotations.helper
## 1261 org.androidannotations.helper
## 1262 org.androidannotations.helper
## 1263 org.androidannotations.helper
## 1264 org.androidannotations.helper
## 1265 org.androidannotations.helper
## 1266 org.androidannotations.helper
## 1267 org.androidannotations.helper
## 1268 org.androidannotations.helper
## 1269 org.androidannotations.helper
## 1270 org.androidannotations.helper
## 1271 org.androidannotations.helper
## 1272 org.androidannotations.helper
## 1273 org.androidannotations.helper
## 1274 org.androidannotations.logger.formatter
## 1275 org.androidannotations.logger.formatter
## 1276 org.androidannotations.logger.formatter
## 1277 org.androidannotations.logger.formatter
## 1278 org.androidannotations.logger.formatter
## 1279 org.androidannotations.logger.formatter
## 1280 org.androidannotations.logger.formatter
## 1281 org.androidannotations.logger.formatter
## 1282 org.androidannotations.logger.formatter
## 1283 org.androidannotations.logger.formatter
## 1284 org.androidannotations.logger.formatter
## 1285 org.androidannotations.logger.formatter
## 1286 org.androidannotations.logger.formatter
## 1287 org.androidannotations.logger.formatter
## 1288 org.androidannotations.logger
## 1289 org.androidannotations.logger
## 1290 org.androidannotations.logger
## 1291 org.androidannotations.logger
## 1292 org.androidannotations.logger
## 1293 org.androidannotations.logger
## 1294 org.androidannotations.logger
## 1295 org.androidannotations.logger
## 1296 org.androidannotations.logger
## 1297 org.androidannotations.logger
## 1298 org.androidannotations.logger
## 1299 org.androidannotations.logger
## 1300 org.androidannotations.logger
## 1301 org.androidannotations.logger
## 1302 org.androidannotations.test15
## 1303 org.androidannotations.test15
## 1304 org.androidannotations.test15
## 1305 org.androidannotations.test15
## 1306 org.androidannotations.test15
## 1307 org.androidannotations.test15
## 1308 org.androidannotations.test15
## 1309 org.androidannotations.test15
## 1310 org.androidannotations.test15
## 1311 org.androidannotations.test15
## 1312 org.androidannotations.test15
## 1313 org.androidannotations.test15
## 1314 org.androidannotations.test15
## 1315 org.androidannotations.test15
## 1316 org.androidannotations.test15
## 1317 org.androidannotations.test15
## 1318 org.androidannotations.test15
## 1319 org.androidannotations.test15
## 1320 org.androidannotations.test15
## 1321 org.androidannotations.test15
## 1322 org.androidannotations.test15
## 1323 org.androidannotations.test15
## 1324 org.androidannotations.test15
## 1325 org.androidannotations.test15
## 1326 org.androidannotations.test15
## 1327 org.androidannotations.test15
## 1328 org.androidannotations.test15
## 1329 org.androidannotations.test15
## 1330 org.androidannotations.test15
## 1331 org.androidannotations.test15
## 1332 org.androidannotations.test15
## 1333 org.androidannotations.test15
## 1334 org.androidannotations.test15
## 1335 org.androidannotations.test15
## 1336 org.androidannotations.test15
## 1337 org.androidannotations.test15
## 1338 org.androidannotations.test15
## 1339 org.androidannotations.test15
## 1340 org.androidannotations.test15
## 1341 org.androidannotations.test15
## 1342 org.androidannotations.test15
## 1343 org.androidannotations.test15
## 1344 org.androidannotations.test15
## 1345 org.androidannotations.test15
## 1346 org.androidannotations.test15
## 1347 org.androidannotations.test15
## 1348 org.androidannotations.test15
## 1349 org.androidannotations.test15
## 1350 org.androidannotations.test15
## 1351 org.androidannotations.test15
## 1352 org.androidannotations.test15.afterextras
## 1353 org.androidannotations.test15.afterextras
## 1354 org.androidannotations.test15.afterextras
## 1355 org.androidannotations.test15.afterextras
## 1356 org.androidannotations.test15.afterinject
## 1357 org.androidannotations.test15.afterinject
## 1358 org.androidannotations.test15.afterinject
## 1359 org.androidannotations.test15.afterinject
## 1360 org.androidannotations.test15.afterinject
## 1361 org.androidannotations.test15.afterinject
## 1362 org.androidannotations.test15.afterviews
## 1363 org.androidannotations.test15.afterviews
## 1364 org.androidannotations.test15.afterviews
## 1365 org.androidannotations.test15.afterviews
## 1366 org.androidannotations.test15.ebean
## 1367 org.androidannotations.test15.ebean
## 1368 org.androidannotations.test15.ebean
## 1369 org.androidannotations.test15.ebean
## 1370 org.androidannotations.test15.ebean
## 1371 org.androidannotations.test15.ebean
## 1372 org.androidannotations.test15.ebean
## 1373 org.androidannotations.test15.ebean
## 1374 org.androidannotations.test15.ebean
## 1375 org.androidannotations.test15.ebean
## 1376 org.androidannotations.test15.ebean
## 1377 org.androidannotations.test15.ebean
## 1378 org.androidannotations.test15.ebean
## 1379 org.androidannotations.test15.ebean
## 1380 org.androidannotations.test15.efragment
## 1381 org.androidannotations.test15.efragment
## 1382 org.androidannotations.test15.efragment
## 1383 org.androidannotations.test15.efragment
## 1384 org.androidannotations.test15.efragment
## 1385 org.androidannotations.test15.efragment
## 1386 org.androidannotations.test15.efragment
## 1387 org.androidannotations.test15.efragment
## 1388 org.androidannotations.test15.efragment
## 1389 org.androidannotations.test15.efragment
## 1390 org.androidannotations.test15.efragment
## 1391 org.androidannotations.test15.efragment
## 1392 org.androidannotations.test15.efragment
## 1393 org.androidannotations.test15.efragment
## 1394 org.androidannotations.test15.efragment
## 1395 org.androidannotations.test15.efragment
## 1396 org.androidannotations.test15.efragment
## 1397 org.androidannotations.test15.efragment
## 1398 org.androidannotations.test15.efragment
## 1399 org.androidannotations.test15.efragment
## 1400 org.androidannotations.test15.ereceiver
## 1401 org.androidannotations.test15.ereceiver
## 1402 org.androidannotations.test15.eview
## 1403 org.androidannotations.test15.eview
## 1404 org.androidannotations.test15.instancestate
## 1405 org.androidannotations.test15.instancestate
## 1406 org.androidannotations.test15.nonconfiguration
## 1407 org.androidannotations.test15.nonconfiguration
## 1408 org.androidannotations.test15.ormlite
## 1409 org.androidannotations.test15.ormlite
## 1410 org.androidannotations.test15.ormlite
## 1411 org.androidannotations.test15.ormlite
## 1412 org.androidannotations.test15.ormlite
## 1413 org.androidannotations.test15.ormlite
## 1414 org.androidannotations.test15.preference
## 1415 org.androidannotations.test15.preference
## 1416 org.androidannotations.test15.preference
## 1417 org.androidannotations.test15.preference
## 1418 org.androidannotations.test15.preference
## 1419 org.androidannotations.test15.preference
## 1420 org.androidannotations.test15.prefs
## 1421 org.androidannotations.test15.prefs
## 1422 org.androidannotations.test15.prefs
## 1423 org.androidannotations.test15.prefs
## 1424 org.androidannotations.test15.receiver
## 1425 org.androidannotations.test15.receiver
## 1426 org.androidannotations.test15.receiver
## 1427 org.androidannotations.test15.receiver
## 1428 org.androidannotations.test15.receiver
## 1429 org.androidannotations.test15.receiver
## 1430 org.androidannotations.test15.res
## 1431 org.androidannotations.test15.res
## 1432 org.androidannotations.test15.res
## 1433 org.androidannotations.test15.res
## 1434 org.androidannotations.test15.rest
## 1435 org.androidannotations.test15.rest
## 1436 org.androidannotations.test15.sherlock
## 1437 org.androidannotations.test15.sherlock
## 1438 org.androidannotations.test15.trace
## 1439 org.androidannotations.test15.trace
## 1440 org.androidannotations.test15.trace
## 1441 org.androidannotations.test15.trace
## 1442 org.androidannotations.helper
## 1443 org.androidannotations.helper
## 1444 org.androidannotations.helper
## 1445 org.androidannotations.helper
## 1446 org.androidannotations.helper
## 1447 org.androidannotations.helper
## 1448 org.androidannotations.helper
## 1449 org.androidannotations.helper
## 1450 org.androidannotations.helper
## 1451 org.androidannotations.helper
## 1452 org.androidannotations.helper
## 1453 org.androidannotations.helper
## 1454 org.androidannotations.helper
## 1455 org.androidannotations.helper
## 1456 org.androidannotations.logger.formatter
## 1457 org.androidannotations.logger.formatter
## 1458 org.androidannotations.logger.formatter
## 1459 org.androidannotations.logger.formatter
## 1460 org.androidannotations.logger.formatter
## 1461 org.androidannotations.logger.formatter
## 1462 org.androidannotations.logger.formatter
## 1463 org.androidannotations.logger.formatter
## 1464 org.androidannotations.logger.formatter
## 1465 org.androidannotations.logger.formatter
## 1466 org.androidannotations.logger.formatter
## 1467 org.androidannotations.logger.formatter
## 1468 org.androidannotations.logger.formatter
## 1469 org.androidannotations.logger.formatter
## 1470 org.androidannotations.logger
## 1471 org.androidannotations.logger
## 1472 org.androidannotations.logger
## 1473 org.androidannotations.logger
## 1474 org.androidannotations.logger
## 1475 org.androidannotations.logger
## 1476 org.androidannotations.logger
## 1477 org.androidannotations.logger
## 1478 org.androidannotations.logger
## 1479 org.androidannotations.logger
## 1480 org.androidannotations.logger
## 1481 org.androidannotations.logger
## 1482 org.androidannotations.logger
## 1483 org.androidannotations.logger
## 1484 org.androidannotations.test15
## 1485 org.androidannotations.test15
## 1486 org.androidannotations.test15
## 1487 org.androidannotations.test15
## 1488 org.androidannotations.test15
## 1489 org.androidannotations.test15
## 1490 org.androidannotations.test15
## 1491 org.androidannotations.test15
## 1492 org.androidannotations.test15
## 1493 org.androidannotations.test15
## 1494 org.androidannotations.test15
## 1495 org.androidannotations.test15
## 1496 org.androidannotations.test15
## 1497 org.androidannotations.test15
## 1498 org.androidannotations.test15
## 1499 org.androidannotations.test15
## 1500 org.androidannotations.test15
## 1501 org.androidannotations.test15
## 1502 org.androidannotations.test15
## 1503 org.androidannotations.test15
## 1504 org.androidannotations.test15
## 1505 org.androidannotations.test15
## 1506 org.androidannotations.test15
## 1507 org.androidannotations.test15
## 1508 org.androidannotations.test15
## 1509 org.androidannotations.test15
## 1510 org.androidannotations.test15
## 1511 org.androidannotations.test15
## 1512 org.androidannotations.test15
## 1513 org.androidannotations.test15
## 1514 org.androidannotations.test15
## 1515 org.androidannotations.test15
## 1516 org.androidannotations.test15
## 1517 org.androidannotations.test15
## 1518 org.androidannotations.test15
## 1519 org.androidannotations.test15
## 1520 org.androidannotations.test15
## 1521 org.androidannotations.test15
## 1522 org.androidannotations.test15
## 1523 org.androidannotations.test15
## 1524 org.androidannotations.test15
## 1525 org.androidannotations.test15
## 1526 org.androidannotations.test15
## 1527 org.androidannotations.test15
## 1528 org.androidannotations.test15
## 1529 org.androidannotations.test15
## 1530 org.androidannotations.test15
## 1531 org.androidannotations.test15
## 1532 org.androidannotations.test15
## 1533 org.androidannotations.test15
## 1534 org.androidannotations.test15.afterextras
## 1535 org.androidannotations.test15.afterextras
## 1536 org.androidannotations.test15.afterextras
## 1537 org.androidannotations.test15.afterextras
## 1538 org.androidannotations.test15.afterinject
## 1539 org.androidannotations.test15.afterinject
## 1540 org.androidannotations.test15.afterinject
## 1541 org.androidannotations.test15.afterinject
## 1542 org.androidannotations.test15.afterinject
## 1543 org.androidannotations.test15.afterinject
## 1544 org.androidannotations.test15.afterviews
## 1545 org.androidannotations.test15.afterviews
## 1546 org.androidannotations.test15.afterviews
## 1547 org.androidannotations.test15.afterviews
## 1548 org.androidannotations.test15.ebean
## 1549 org.androidannotations.test15.ebean
## 1550 org.androidannotations.test15.ebean
## 1551 org.androidannotations.test15.ebean
## 1552 org.androidannotations.test15.ebean
## 1553 org.androidannotations.test15.ebean
## 1554 org.androidannotations.test15.ebean
## 1555 org.androidannotations.test15.ebean
## 1556 org.androidannotations.test15.ebean
## 1557 org.androidannotations.test15.ebean
## 1558 org.androidannotations.test15.ebean
## 1559 org.androidannotations.test15.ebean
## 1560 org.androidannotations.test15.ebean
## 1561 org.androidannotations.test15.ebean
## 1562 org.androidannotations.test15.efragment
## 1563 org.androidannotations.test15.efragment
## 1564 org.androidannotations.test15.efragment
## 1565 org.androidannotations.test15.efragment
## 1566 org.androidannotations.test15.efragment
## 1567 org.androidannotations.test15.efragment
## 1568 org.androidannotations.test15.efragment
## 1569 org.androidannotations.test15.efragment
## 1570 org.androidannotations.test15.efragment
## 1571 org.androidannotations.test15.efragment
## 1572 org.androidannotations.test15.efragment
## 1573 org.androidannotations.test15.efragment
## 1574 org.androidannotations.test15.efragment
## 1575 org.androidannotations.test15.efragment
## 1576 org.androidannotations.test15.efragment
## 1577 org.androidannotations.test15.efragment
## 1578 org.androidannotations.test15.efragment
## 1579 org.androidannotations.test15.efragment
## 1580 org.androidannotations.test15.efragment
## 1581 org.androidannotations.test15.efragment
## 1582 org.androidannotations.test15.ereceiver
## 1583 org.androidannotations.test15.ereceiver
## 1584 org.androidannotations.test15.eview
## 1585 org.androidannotations.test15.eview
## 1586 org.androidannotations.test15.instancestate
## 1587 org.androidannotations.test15.instancestate
## 1588 org.androidannotations.test15.nonconfiguration
## 1589 org.androidannotations.test15.nonconfiguration
## 1590 org.androidannotations.test15.ormlite
## 1591 org.androidannotations.test15.ormlite
## 1592 org.androidannotations.test15.ormlite
## 1593 org.androidannotations.test15.ormlite
## 1594 org.androidannotations.test15.ormlite
## 1595 org.androidannotations.test15.ormlite
## 1596 org.androidannotations.test15.preference
## 1597 org.androidannotations.test15.preference
## 1598 org.androidannotations.test15.preference
## 1599 org.androidannotations.test15.preference
## 1600 org.androidannotations.test15.preference
## 1601 org.androidannotations.test15.preference
## 1602 org.androidannotations.test15.preference
## 1603 org.androidannotations.test15.preference
## 1604 org.androidannotations.test15.prefs
## 1605 org.androidannotations.test15.prefs
## 1606 org.androidannotations.test15.prefs
## 1607 org.androidannotations.test15.prefs
## 1608 org.androidannotations.test15.receiver
## 1609 org.androidannotations.test15.receiver
## 1610 org.androidannotations.test15.receiver
## 1611 org.androidannotations.test15.receiver
## 1612 org.androidannotations.test15.receiver
## 1613 org.androidannotations.test15.receiver
## 1614 org.androidannotations.test15.res
## 1615 org.androidannotations.test15.res
## 1616 org.androidannotations.test15.res
## 1617 org.androidannotations.test15.res
## 1618 org.androidannotations.test15.rest
## 1619 org.androidannotations.test15.rest
## 1620 org.androidannotations.test15.sherlock
## 1621 org.androidannotations.test15.sherlock
## 1622 org.androidannotations.test15.trace
## 1623 org.androidannotations.test15.trace
## 1624 org.androidannotations.test15.trace
## 1625 org.androidannotations.test15.trace
## 1626 org.androidannotations.helper
## 1627 org.androidannotations.helper
## 1628 org.androidannotations.helper
## 1629 org.androidannotations.helper
## 1630 org.androidannotations.helper
## 1631 org.androidannotations.helper
## 1632 org.androidannotations.helper
## 1633 org.androidannotations.helper
## 1634 org.androidannotations.helper
## 1635 org.androidannotations.helper
## 1636 org.androidannotations.helper
## 1637 org.androidannotations.helper
## 1638 org.androidannotations.helper
## 1639 org.androidannotations.helper
## 1640 org.androidannotations.logger.formatter
## 1641 org.androidannotations.logger.formatter
## 1642 org.androidannotations.logger.formatter
## 1643 org.androidannotations.logger.formatter
## 1644 org.androidannotations.logger.formatter
## 1645 org.androidannotations.logger.formatter
## 1646 org.androidannotations.logger.formatter
## 1647 org.androidannotations.logger.formatter
## 1648 org.androidannotations.logger.formatter
## 1649 org.androidannotations.logger.formatter
## 1650 org.androidannotations.logger.formatter
## 1651 org.androidannotations.logger.formatter
## 1652 org.androidannotations.logger.formatter
## 1653 org.androidannotations.logger.formatter
## 1654 org.androidannotations.logger
## 1655 org.androidannotations.logger
## 1656 org.androidannotations.logger
## 1657 org.androidannotations.logger
## 1658 org.androidannotations.logger
## 1659 org.androidannotations.logger
## 1660 org.androidannotations.logger
## 1661 org.androidannotations.logger
## 1662 org.androidannotations.logger
## 1663 org.androidannotations.logger
## 1664 org.androidannotations.logger
## 1665 org.androidannotations.logger
## 1666 org.androidannotations.logger
## 1667 org.androidannotations.logger
## 1668 org.androidannotations.test15
## 1669 org.androidannotations.test15
## 1670 org.androidannotations.test15
## 1671 org.androidannotations.test15
## 1672 org.androidannotations.test15
## 1673 org.androidannotations.test15
## 1674 org.androidannotations.test15
## 1675 org.androidannotations.test15
## 1676 org.androidannotations.test15
## 1677 org.androidannotations.test15
## 1678 org.androidannotations.test15
## 1679 org.androidannotations.test15
## 1680 org.androidannotations.test15
## 1681 org.androidannotations.test15
## 1682 org.androidannotations.test15
## 1683 org.androidannotations.test15
## 1684 org.androidannotations.test15
## 1685 org.androidannotations.test15
## 1686 org.androidannotations.test15
## 1687 org.androidannotations.test15
## 1688 org.androidannotations.test15
## 1689 org.androidannotations.test15
## 1690 org.androidannotations.test15
## 1691 org.androidannotations.test15
## 1692 org.androidannotations.test15
## 1693 org.androidannotations.test15
## 1694 org.androidannotations.test15
## 1695 org.androidannotations.test15
## 1696 org.androidannotations.test15
## 1697 org.androidannotations.test15
## 1698 org.androidannotations.test15
## 1699 org.androidannotations.test15
## 1700 org.androidannotations.test15
## 1701 org.androidannotations.test15
## 1702 org.androidannotations.test15
## 1703 org.androidannotations.test15
## 1704 org.androidannotations.test15
## 1705 org.androidannotations.test15
## 1706 org.androidannotations.test15
## 1707 org.androidannotations.test15
## 1708 org.androidannotations.test15
## 1709 org.androidannotations.test15
## 1710 org.androidannotations.test15
## 1711 org.androidannotations.test15
## 1712 org.androidannotations.test15
## 1713 org.androidannotations.test15
## 1714 org.androidannotations.test15
## 1715 org.androidannotations.test15
## 1716 org.androidannotations.test15
## 1717 org.androidannotations.test15
## 1718 org.androidannotations.test15.afterextras
## 1719 org.androidannotations.test15.afterextras
## 1720 org.androidannotations.test15.afterextras
## 1721 org.androidannotations.test15.afterextras
## 1722 org.androidannotations.test15.afterinject
## 1723 org.androidannotations.test15.afterinject
## 1724 org.androidannotations.test15.afterinject
## 1725 org.androidannotations.test15.afterinject
## 1726 org.androidannotations.test15.afterinject
## 1727 org.androidannotations.test15.afterinject
## 1728 org.androidannotations.test15.afterviews
## 1729 org.androidannotations.test15.afterviews
## 1730 org.androidannotations.test15.afterviews
## 1731 org.androidannotations.test15.afterviews
## 1732 org.androidannotations.test15.ebean
## 1733 org.androidannotations.test15.ebean
## 1734 org.androidannotations.test15.ebean
## 1735 org.androidannotations.test15.ebean
## 1736 org.androidannotations.test15.ebean
## 1737 org.androidannotations.test15.ebean
## 1738 org.androidannotations.test15.ebean
## 1739 org.androidannotations.test15.ebean
## 1740 org.androidannotations.test15.ebean
## 1741 org.androidannotations.test15.ebean
## 1742 org.androidannotations.test15.ebean
## 1743 org.androidannotations.test15.ebean
## 1744 org.androidannotations.test15.ebean
## 1745 org.androidannotations.test15.ebean
## 1746 org.androidannotations.test15.efragment
## 1747 org.androidannotations.test15.efragment
## 1748 org.androidannotations.test15.efragment
## 1749 org.androidannotations.test15.efragment
## 1750 org.androidannotations.test15.efragment
## 1751 org.androidannotations.test15.efragment
## 1752 org.androidannotations.test15.efragment
## 1753 org.androidannotations.test15.efragment
## 1754 org.androidannotations.test15.efragment
## 1755 org.androidannotations.test15.efragment
## 1756 org.androidannotations.test15.efragment
## 1757 org.androidannotations.test15.efragment
## 1758 org.androidannotations.test15.efragment
## 1759 org.androidannotations.test15.efragment
## 1760 org.androidannotations.test15.efragment
## 1761 org.androidannotations.test15.efragment
## 1762 org.androidannotations.test15.efragment
## 1763 org.androidannotations.test15.efragment
## 1764 org.androidannotations.test15.efragment
## 1765 org.androidannotations.test15.efragment
## 1766 org.androidannotations.test15.ereceiver
## 1767 org.androidannotations.test15.ereceiver
## 1768 org.androidannotations.test15.eview
## 1769 org.androidannotations.test15.eview
## 1770 org.androidannotations.test15.instancestate
## 1771 org.androidannotations.test15.instancestate
## 1772 org.androidannotations.test15.nonconfiguration
## 1773 org.androidannotations.test15.nonconfiguration
## 1774 org.androidannotations.test15.ormlite
## 1775 org.androidannotations.test15.ormlite
## 1776 org.androidannotations.test15.ormlite
## 1777 org.androidannotations.test15.ormlite
## 1778 org.androidannotations.test15.ormlite
## 1779 org.androidannotations.test15.ormlite
## 1780 org.androidannotations.test15.preference
## 1781 org.androidannotations.test15.preference
## 1782 org.androidannotations.test15.preference
## 1783 org.androidannotations.test15.preference
## 1784 org.androidannotations.test15.preference
## 1785 org.androidannotations.test15.preference
## 1786 org.androidannotations.test15.preference
## 1787 org.androidannotations.test15.preference
## 1788 org.androidannotations.test15.prefs
## 1789 org.androidannotations.test15.prefs
## 1790 org.androidannotations.test15.prefs
## 1791 org.androidannotations.test15.prefs
## 1792 org.androidannotations.test15.receiver
## 1793 org.androidannotations.test15.receiver
## 1794 org.androidannotations.test15.receiver
## 1795 org.androidannotations.test15.receiver
## 1796 org.androidannotations.test15.receiver
## 1797 org.androidannotations.test15.receiver
## 1798 org.androidannotations.test15.res
## 1799 org.androidannotations.test15.res
## 1800 org.androidannotations.test15.res
## 1801 org.androidannotations.test15.res
## 1802 org.androidannotations.test15.rest
## 1803 org.androidannotations.test15.rest
## 1804 org.androidannotations.test15.sherlock
## 1805 org.androidannotations.test15.sherlock
## 1806 org.androidannotations.test15.trace
## 1807 org.androidannotations.test15.trace
## 1808 org.androidannotations.test15.trace
## 1809 org.androidannotations.test15.trace
## 1810 org.androidannotations.helper
## 1811 org.androidannotations.helper
## 1812 org.androidannotations.helper
## 1813 org.androidannotations.helper
## 1814 org.androidannotations.helper
## 1815 org.androidannotations.helper
## 1816 org.androidannotations.helper
## 1817 org.androidannotations.helper
## 1818 org.androidannotations.helper
## 1819 org.androidannotations.helper
## 1820 org.androidannotations.helper
## 1821 org.androidannotations.helper
## 1822 org.androidannotations.internal.helper
## 1823 org.androidannotations.internal.helper
## 1824 org.androidannotations.internal.helper
## 1825 org.androidannotations.internal.helper
## 1826 org.androidannotations.internal.helper
## 1827 org.androidannotations.internal.helper
## 1828 org.androidannotations.internal.helper
## 1829 org.androidannotations.internal.helper
## 1830 org.androidannotations.internal.helper
## 1831 org.androidannotations.internal.helper
## 1832 org.androidannotations.internal.helper
## 1833 org.androidannotations.internal.helper
## 1834 org.androidannotations.internal.helper
## 1835 org.androidannotations.internal.helper
## 1836 org.androidannotations.internal.helper
## 1837 org.androidannotations.internal.helper
## 1838 org.androidannotations.internal.helper
## 1839 org.androidannotations.internal.helper
## 1840 org.androidannotations.internal.helper
## 1841 org.androidannotations.internal.helper
## 1842 org.androidannotations.internal.helper
## 1843 org.androidannotations.internal.helper
## 1844 org.androidannotations.internal.helper
## 1845 org.androidannotations.internal.helper
## 1846 org.androidannotations.logger.formatter
## 1847 org.androidannotations.logger.formatter
## 1848 org.androidannotations.logger.formatter
## 1849 org.androidannotations.logger.formatter
## 1850 org.androidannotations.logger.formatter
## 1851 org.androidannotations.logger.formatter
## 1852 org.androidannotations.logger.formatter
## 1853 org.androidannotations.logger.formatter
## 1854 org.androidannotations.logger.formatter
## 1855 org.androidannotations.logger.formatter
## 1856 org.androidannotations.logger.formatter
## 1857 org.androidannotations.logger.formatter
## 1858 org.androidannotations.logger.formatter
## 1859 org.androidannotations.logger.formatter
## 1860 org.androidannotations.logger
## 1861 org.androidannotations.logger
## 1862 org.androidannotations.logger
## 1863 org.androidannotations.logger
## 1864 org.androidannotations.logger
## 1865 org.androidannotations.logger
## 1866 org.androidannotations.logger
## 1867 org.androidannotations.logger
## 1868 org.androidannotations.logger
## 1869 org.androidannotations.logger
## 1870 org.androidannotations.logger
## 1871 org.androidannotations.logger
## 1872 org.androidannotations.logger
## 1873 org.androidannotations.logger
## 1874 org.androidannotations.test
## 1875 org.androidannotations.test
## 1876 org.androidannotations.test
## 1877 org.androidannotations.test
## 1878 org.androidannotations.test
## 1879 org.androidannotations.test
## 1880 org.androidannotations.test
## 1881 org.androidannotations.test
## 1882 org.androidannotations.test
## 1883 org.androidannotations.test
## 1884 org.androidannotations.test
## 1885 org.androidannotations.test
## 1886 org.androidannotations.test
## 1887 org.androidannotations.test
## 1888 org.androidannotations.test
## 1889 org.androidannotations.test
## 1890 org.androidannotations.test
## 1891 org.androidannotations.test
## 1892 org.androidannotations.test
## 1893 org.androidannotations.test
## 1894 org.androidannotations.test
## 1895 org.androidannotations.test
## 1896 org.androidannotations.test
## 1897 org.androidannotations.test
## 1898 org.androidannotations.test
## 1899 org.androidannotations.test
## 1900 org.androidannotations.test
## 1901 org.androidannotations.test
## 1902 org.androidannotations.test
## 1903 org.androidannotations.test
## 1904 org.androidannotations.test
## 1905 org.androidannotations.test
## 1906 org.androidannotations.test
## 1907 org.androidannotations.test
## 1908 org.androidannotations.test
## 1909 org.androidannotations.test
## 1910 org.androidannotations.test
## 1911 org.androidannotations.test
## 1912 org.androidannotations.test
## 1913 org.androidannotations.test
## 1914 org.androidannotations.test
## 1915 org.androidannotations.test
## 1916 org.androidannotations.test
## 1917 org.androidannotations.test
## 1918 org.androidannotations.test
## 1919 org.androidannotations.test
## 1920 org.androidannotations.test
## 1921 org.androidannotations.test
## 1922 org.androidannotations.test
## 1923 org.androidannotations.test
## 1924 org.androidannotations.test
## 1925 org.androidannotations.test
## 1926 org.androidannotations.test
## 1927 org.androidannotations.test
## 1928 org.androidannotations.test
## 1929 org.androidannotations.test
## 1930 org.androidannotations.test
## 1931 org.androidannotations.test
## 1932 org.androidannotations.test
## 1933 org.androidannotations.test
## 1934 org.androidannotations.test
## 1935 org.androidannotations.test
## 1936 org.androidannotations.test
## 1937 org.androidannotations.test
## 1938 org.androidannotations.test
## 1939 org.androidannotations.test
## 1940 org.androidannotations.test
## 1941 org.androidannotations.test
## 1942 org.androidannotations.test
## 1943 org.androidannotations.test
## 1944 org.androidannotations.test
## 1945 org.androidannotations.test
## 1946 org.androidannotations.test
## 1947 org.androidannotations.test
## 1948 org.androidannotations.test
## 1949 org.androidannotations.test
## 1950 org.androidannotations.test
## 1951 org.androidannotations.test
## 1952 org.androidannotations.test
## 1953 org.androidannotations.test
## 1954 org.androidannotations.test
## 1955 org.androidannotations.test
## 1956 org.androidannotations.test
## 1957 org.androidannotations.test
## 1958 org.androidannotations.test
## 1959 org.androidannotations.test
## 1960 org.androidannotations.test
## 1961 org.androidannotations.test
## 1962 org.androidannotations.test
## 1963 org.androidannotations.test
## 1964 org.androidannotations.test
## 1965 org.androidannotations.test
## 1966 org.androidannotations.test
## 1967 org.androidannotations.test
## 1968 org.androidannotations.test
## 1969 org.androidannotations.test
## 1970 org.androidannotations.test
## 1971 org.androidannotations.test
## 1972 org.androidannotations.test
## 1973 org.androidannotations.test
## 1974 org.androidannotations.test
## 1975 org.androidannotations.test
## 1976 org.androidannotations.test
## 1977 org.androidannotations.test
## 1978 org.androidannotations.test
## 1979 org.androidannotations.test
## 1980 org.androidannotations.test
## 1981 org.androidannotations.test
## 1982 org.androidannotations.test
## 1983 org.androidannotations.test
## 1984 org.androidannotations.test
## 1985 org.androidannotations.test
## 1986 org.androidannotations.test
## 1987 org.androidannotations.test
## 1988 org.androidannotations.test
## 1989 org.androidannotations.test
## 1990 org.androidannotations.test
## 1991 org.androidannotations.test
## 1992 org.androidannotations.test
## 1993 org.androidannotations.test
## 1994 org.androidannotations.test
## 1995 org.androidannotations.test
## 1996 org.androidannotations.test
## 1997 org.androidannotations.test
## 1998 org.androidannotations.test
## 1999 org.androidannotations.test
## 2000 org.androidannotations.test
## 2001 org.androidannotations.test
## 2002 org.androidannotations.test
## 2003 org.androidannotations.test
## 2004 org.androidannotations.test
## 2005 org.androidannotations.test
## 2006 org.androidannotations.test
## 2007 org.androidannotations.test
## 2008 org.androidannotations.test
## 2009 org.androidannotations.test
## 2010 org.androidannotations.test
## 2011 org.androidannotations.test
## 2012 org.androidannotations.test
## 2013 org.androidannotations.test
## 2014 org.androidannotations.test
## 2015 org.androidannotations.test
## 2016 org.androidannotations.test
## 2017 org.androidannotations.test
## 2018 org.androidannotations.test
## 2019 org.androidannotations.test
## 2020 org.androidannotations.test
## 2021 org.androidannotations.test
## 2022 org.androidannotations.test
## 2023 org.androidannotations.test
## 2024 org.androidannotations.test
## 2025 org.androidannotations.test
## 2026 org.androidannotations.test
## 2027 org.androidannotations.test
## 2028 org.androidannotations.test
## 2029 org.androidannotations.test
## 2030 org.androidannotations.test
## 2031 org.androidannotations.test
## 2032 org.androidannotations.test
## 2033 org.androidannotations.test
## 2034 org.androidannotations.test
## 2035 org.androidannotations.test
## 2036 org.androidannotations.test
## 2037 org.androidannotations.test
## 2038 org.androidannotations.test
## 2039 org.androidannotations.test
## 2040 org.androidannotations.test
## 2041 org.androidannotations.test
## 2042 org.androidannotations.test
## 2043 org.androidannotations.test
## 2044 org.androidannotations.test
## 2045 org.androidannotations.test
## 2046 org.androidannotations.test
## 2047 org.androidannotations.test
## 2048 org.androidannotations.test
## 2049 org.androidannotations.test
## 2050 org.androidannotations.test
## 2051 org.androidannotations.test
## 2052 org.androidannotations.test
## 2053 org.androidannotations.test
## 2054 org.androidannotations.test
## 2055 org.androidannotations.test
## 2056 org.androidannotations.test
## 2057 org.androidannotations.test
## 2058 org.androidannotations.test
## 2059 org.androidannotations.test
## 2060 org.androidannotations.test
## 2061 org.androidannotations.test
## 2062 org.androidannotations.test
## 2063 org.androidannotations.test
## 2064 org.androidannotations.test
## 2065 org.androidannotations.test
## 2066 org.androidannotations.test
## 2067 org.androidannotations.test
## 2068 org.androidannotations.test
## 2069 org.androidannotations.test
## 2070 org.androidannotations.test
## 2071 org.androidannotations.test
## 2072 org.androidannotations.test
## 2073 org.androidannotations.test
## 2074 org.androidannotations.test
## 2075 org.androidannotations.test
## 2076 org.androidannotations.test
## 2077 org.androidannotations.test
## 2078 org.androidannotations.test
## 2079 org.androidannotations.test
## 2080 org.androidannotations.test
## 2081 org.androidannotations.test
## 2082 org.androidannotations.test
## 2083 org.androidannotations.test
## 2084 org.androidannotations.test
## 2085 org.androidannotations.test
## 2086 org.androidannotations.test
## 2087 org.androidannotations.test
## 2088 org.androidannotations.test
## 2089 org.androidannotations.test
## 2090 org.androidannotations.test
## 2091 org.androidannotations.test
## 2092 org.androidannotations.test
## 2093 org.androidannotations.test
## 2094 org.androidannotations.test
## 2095 org.androidannotations.test
## 2096 org.androidannotations.test
## 2097 org.androidannotations.test
## 2098 org.androidannotations.test
## 2099 org.androidannotations.test
## 2100 org.androidannotations.test
## 2101 org.androidannotations.test
## 2102 org.androidannotations.test
## 2103 org.androidannotations.test
## 2104 org.androidannotations.test
## 2105 org.androidannotations.test
## 2106 org.androidannotations.test
## 2107 org.androidannotations.test
## 2108 org.androidannotations.test
## 2109 org.androidannotations.test
## 2110 org.androidannotations.test
## 2111 org.androidannotations.test
## 2112 org.androidannotations.test
## 2113 org.androidannotations.test
## 2114 org.androidannotations.test
## 2115 org.androidannotations.test
## 2116 org.androidannotations.test
## 2117 org.androidannotations.test
## 2118 org.androidannotations.test
## 2119 org.androidannotations.test
## 2120 org.androidannotations.test
## 2121 org.androidannotations.test
## 2122 org.androidannotations.test
## 2123 org.androidannotations.test
## 2124 org.androidannotations.test
## 2125 org.androidannotations.test
## 2126 org.androidannotations.test
## 2127 org.androidannotations.test
## 2128 org.androidannotations.test
## 2129 org.androidannotations.test
## 2130 org.androidannotations.test
## 2131 org.androidannotations.test
## 2132 org.androidannotations.test
## 2133 org.androidannotations.test
## 2134 org.androidannotations.test
## 2135 org.androidannotations.test
## 2136 org.androidannotations.test
## 2137 org.androidannotations.test
## 2138 org.androidannotations.test
## 2139 org.androidannotations.test
## 2140 org.androidannotations.test
## 2141 org.androidannotations.test
## 2142 org.androidannotations.test
## 2143 org.androidannotations.test
## 2144 org.androidannotations.test
## 2145 org.androidannotations.test
## 2146 org.androidannotations.test
## 2147 org.androidannotations.test
## 2148 org.androidannotations.test
## 2149 org.androidannotations.test
## 2150 org.androidannotations.test
## 2151 org.androidannotations.test
## 2152 org.androidannotations.test
## 2153 org.androidannotations.test
## 2154 org.androidannotations.test
## 2155 org.androidannotations.test
## 2156 org.androidannotations.test
## 2157 org.androidannotations.test
## 2158 org.androidannotations.test
## 2159 org.androidannotations.test
## 2160 org.androidannotations.test
## 2161 org.androidannotations.test
## 2162 org.androidannotations.test
## 2163 org.androidannotations.test
## 2164 org.androidannotations.test
## 2165 org.androidannotations.test
## 2166 org.androidannotations.test
## 2167 org.androidannotations.test
## 2168 org.androidannotations.test
## 2169 org.androidannotations.test
## 2170 org.androidannotations.test
## 2171 org.androidannotations.test
## 2172 org.androidannotations.test
## 2173 org.androidannotations.test
## 2174 org.androidannotations.test.afterextras
## 2175 org.androidannotations.test.afterextras
## 2176 org.androidannotations.test.afterextras
## 2177 org.androidannotations.test.afterextras
## 2178 org.androidannotations.test.afterextras
## 2179 org.androidannotations.test.afterextras
## 2180 org.androidannotations.test.afterextras
## 2181 org.androidannotations.test.afterextras
## 2182 org.androidannotations.test.afterextras
## 2183 org.androidannotations.test.afterextras
## 2184 org.androidannotations.test.afterextras
## 2185 org.androidannotations.test.afterextras
## 2186 org.androidannotations.test.afterextras
## 2187 org.androidannotations.test.afterextras
## 2188 org.androidannotations.test.afterextras
## 2189 org.androidannotations.test.afterextras
## 2190 org.androidannotations.test.afterextras
## 2191 org.androidannotations.test.afterextras
## 2192 org.androidannotations.test.afterextras
## 2193 org.androidannotations.test.afterextras
## 2194 org.androidannotations.test.afterextras
## 2195 org.androidannotations.test.afterextras
## 2196 org.androidannotations.test.afterextras
## 2197 org.androidannotations.test.afterextras
## 2198 org.androidannotations.test.afterinject
## 2199 org.androidannotations.test.afterinject
## 2200 org.androidannotations.test.afterinject
## 2201 org.androidannotations.test.afterinject
## 2202 org.androidannotations.test.afterinject
## 2203 org.androidannotations.test.afterinject
## 2204 org.androidannotations.test.afterinject
## 2205 org.androidannotations.test.afterinject
## 2206 org.androidannotations.test.afterinject
## 2207 org.androidannotations.test.afterinject
## 2208 org.androidannotations.test.afterinject
## 2209 org.androidannotations.test.afterinject
## 2210 org.androidannotations.test.afterinject
## 2211 org.androidannotations.test.afterinject
## 2212 org.androidannotations.test.afterinject
## 2213 org.androidannotations.test.afterinject
## 2214 org.androidannotations.test.afterinject
## 2215 org.androidannotations.test.afterinject
## 2216 org.androidannotations.test.afterinject
## 2217 org.androidannotations.test.afterinject
## 2218 org.androidannotations.test.afterinject
## 2219 org.androidannotations.test.afterinject
## 2220 org.androidannotations.test.afterinject
## 2221 org.androidannotations.test.afterinject
## 2222 org.androidannotations.test.afterinject
## 2223 org.androidannotations.test.afterinject
## 2224 org.androidannotations.test.afterinject
## 2225 org.androidannotations.test.afterinject
## 2226 org.androidannotations.test.afterinject
## 2227 org.androidannotations.test.afterinject
## 2228 org.androidannotations.test.afterinject
## 2229 org.androidannotations.test.afterinject
## 2230 org.androidannotations.test.afterinject
## 2231 org.androidannotations.test.afterinject
## 2232 org.androidannotations.test.afterinject
## 2233 org.androidannotations.test.afterinject
## 2234 org.androidannotations.test.afterviews
## 2235 org.androidannotations.test.afterviews
## 2236 org.androidannotations.test.afterviews
## 2237 org.androidannotations.test.afterviews
## 2238 org.androidannotations.test.afterviews
## 2239 org.androidannotations.test.afterviews
## 2240 org.androidannotations.test.afterviews
## 2241 org.androidannotations.test.afterviews
## 2242 org.androidannotations.test.afterviews
## 2243 org.androidannotations.test.afterviews
## 2244 org.androidannotations.test.afterviews
## 2245 org.androidannotations.test.afterviews
## 2246 org.androidannotations.test.afterviews
## 2247 org.androidannotations.test.afterviews
## 2248 org.androidannotations.test.afterviews
## 2249 org.androidannotations.test.afterviews
## 2250 org.androidannotations.test.afterviews
## 2251 org.androidannotations.test.afterviews
## 2252 org.androidannotations.test.afterviews
## 2253 org.androidannotations.test.afterviews
## 2254 org.androidannotations.test.afterviews
## 2255 org.androidannotations.test.afterviews
## 2256 org.androidannotations.test.afterviews
## 2257 org.androidannotations.test.afterviews
## 2258 org.androidannotations.test.ebean
## 2259 org.androidannotations.test.ebean
## 2260 org.androidannotations.test.ebean
## 2261 org.androidannotations.test.ebean
## 2262 org.androidannotations.test.ebean
## 2263 org.androidannotations.test.ebean
## 2264 org.androidannotations.test.ebean
## 2265 org.androidannotations.test.ebean
## 2266 org.androidannotations.test.ebean
## 2267 org.androidannotations.test.ebean
## 2268 org.androidannotations.test.ebean
## 2269 org.androidannotations.test.ebean
## 2270 org.androidannotations.test.ebean
## 2271 org.androidannotations.test.ebean
## 2272 org.androidannotations.test.ebean
## 2273 org.androidannotations.test.ebean
## 2274 org.androidannotations.test.ebean
## 2275 org.androidannotations.test.ebean
## 2276 org.androidannotations.test.ebean
## 2277 org.androidannotations.test.ebean
## 2278 org.androidannotations.test.ebean
## 2279 org.androidannotations.test.ebean
## 2280 org.androidannotations.test.ebean
## 2281 org.androidannotations.test.ebean
## 2282 org.androidannotations.test.ebean
## 2283 org.androidannotations.test.ebean
## 2284 org.androidannotations.test.ebean
## 2285 org.androidannotations.test.ebean
## 2286 org.androidannotations.test.ebean
## 2287 org.androidannotations.test.ebean
## 2288 org.androidannotations.test.ebean
## 2289 org.androidannotations.test.ebean
## 2290 org.androidannotations.test.ebean
## 2291 org.androidannotations.test.ebean
## 2292 org.androidannotations.test.ebean
## 2293 org.androidannotations.test.ebean
## 2294 org.androidannotations.test.ebean
## 2295 org.androidannotations.test.ebean
## 2296 org.androidannotations.test.ebean
## 2297 org.androidannotations.test.ebean
## 2298 org.androidannotations.test.ebean
## 2299 org.androidannotations.test.ebean
## 2300 org.androidannotations.test.ebean
## 2301 org.androidannotations.test.ebean
## 2302 org.androidannotations.test.ebean
## 2303 org.androidannotations.test.ebean
## 2304 org.androidannotations.test.ebean
## 2305 org.androidannotations.test.ebean
## 2306 org.androidannotations.test.ebean
## 2307 org.androidannotations.test.ebean
## 2308 org.androidannotations.test.ebean
## 2309 org.androidannotations.test.ebean
## 2310 org.androidannotations.test.ebean
## 2311 org.androidannotations.test.ebean
## 2312 org.androidannotations.test.ebean
## 2313 org.androidannotations.test.ebean
## 2314 org.androidannotations.test.ebean
## 2315 org.androidannotations.test.ebean
## 2316 org.androidannotations.test.ebean
## 2317 org.androidannotations.test.ebean
## 2318 org.androidannotations.test.ebean
## 2319 org.androidannotations.test.ebean
## 2320 org.androidannotations.test.ebean
## 2321 org.androidannotations.test.ebean
## 2322 org.androidannotations.test.ebean
## 2323 org.androidannotations.test.ebean
## 2324 org.androidannotations.test.ebean
## 2325 org.androidannotations.test.ebean
## 2326 org.androidannotations.test.ebean
## 2327 org.androidannotations.test.ebean
## 2328 org.androidannotations.test.ebean
## 2329 org.androidannotations.test.ebean
## 2330 org.androidannotations.test.efragment
## 2331 org.androidannotations.test.efragment
## 2332 org.androidannotations.test.efragment
## 2333 org.androidannotations.test.efragment
## 2334 org.androidannotations.test.efragment
## 2335 org.androidannotations.test.efragment
## 2336 org.androidannotations.test.efragment
## 2337 org.androidannotations.test.efragment
## 2338 org.androidannotations.test.efragment
## 2339 org.androidannotations.test.efragment
## 2340 org.androidannotations.test.efragment
## 2341 org.androidannotations.test.efragment
## 2342 org.androidannotations.test.efragment
## 2343 org.androidannotations.test.efragment
## 2344 org.androidannotations.test.efragment
## 2345 org.androidannotations.test.efragment
## 2346 org.androidannotations.test.efragment
## 2347 org.androidannotations.test.efragment
## 2348 org.androidannotations.test.efragment
## 2349 org.androidannotations.test.efragment
## 2350 org.androidannotations.test.efragment
## 2351 org.androidannotations.test.efragment
## 2352 org.androidannotations.test.efragment
## 2353 org.androidannotations.test.efragment
## 2354 org.androidannotations.test.efragment
## 2355 org.androidannotations.test.efragment
## 2356 org.androidannotations.test.efragment
## 2357 org.androidannotations.test.efragment
## 2358 org.androidannotations.test.efragment
## 2359 org.androidannotations.test.efragment
## 2360 org.androidannotations.test.efragment
## 2361 org.androidannotations.test.efragment
## 2362 org.androidannotations.test.efragment
## 2363 org.androidannotations.test.efragment
## 2364 org.androidannotations.test.efragment
## 2365 org.androidannotations.test.efragment
## 2366 org.androidannotations.test.efragment
## 2367 org.androidannotations.test.efragment
## 2368 org.androidannotations.test.efragment
## 2369 org.androidannotations.test.efragment
## 2370 org.androidannotations.test.efragment
## 2371 org.androidannotations.test.efragment
## 2372 org.androidannotations.test.efragment
## 2373 org.androidannotations.test.efragment
## 2374 org.androidannotations.test.efragment
## 2375 org.androidannotations.test.efragment
## 2376 org.androidannotations.test.efragment
## 2377 org.androidannotations.test.efragment
## 2378 org.androidannotations.test.efragment
## 2379 org.androidannotations.test.efragment
## 2380 org.androidannotations.test.efragment
## 2381 org.androidannotations.test.efragment
## 2382 org.androidannotations.test.efragment
## 2383 org.androidannotations.test.efragment
## 2384 org.androidannotations.test.efragment
## 2385 org.androidannotations.test.efragment
## 2386 org.androidannotations.test.efragment
## 2387 org.androidannotations.test.efragment
## 2388 org.androidannotations.test.efragment
## 2389 org.androidannotations.test.efragment
## 2390 org.androidannotations.test.efragment
## 2391 org.androidannotations.test.efragment
## 2392 org.androidannotations.test.efragment
## 2393 org.androidannotations.test.efragment
## 2394 org.androidannotations.test.efragment
## 2395 org.androidannotations.test.efragment
## 2396 org.androidannotations.test.efragment
## 2397 org.androidannotations.test.efragment
## 2398 org.androidannotations.test.efragment
## 2399 org.androidannotations.test.efragment
## 2400 org.androidannotations.test.efragment
## 2401 org.androidannotations.test.efragment
## 2402 org.androidannotations.test.efragment
## 2403 org.androidannotations.test.efragment
## 2404 org.androidannotations.test.efragment
## 2405 org.androidannotations.test.efragment
## 2406 org.androidannotations.test.efragment
## 2407 org.androidannotations.test.efragment
## 2408 org.androidannotations.test.efragment
## 2409 org.androidannotations.test.efragment
## 2410 org.androidannotations.test.efragment
## 2411 org.androidannotations.test.efragment
## 2412 org.androidannotations.test.efragment
## 2413 org.androidannotations.test.efragment
## 2414 org.androidannotations.test.efragment
## 2415 org.androidannotations.test.efragment
## 2416 org.androidannotations.test.efragment
## 2417 org.androidannotations.test.efragment
## 2418 org.androidannotations.test.efragment
## 2419 org.androidannotations.test.efragment
## 2420 org.androidannotations.test.efragment
## 2421 org.androidannotations.test.efragment
## 2422 org.androidannotations.test.efragment
## 2423 org.androidannotations.test.efragment
## 2424 org.androidannotations.test.efragment
## 2425 org.androidannotations.test.efragment
## 2426 org.androidannotations.test.ereceiver
## 2427 org.androidannotations.test.ereceiver
## 2428 org.androidannotations.test.ereceiver
## 2429 org.androidannotations.test.ereceiver
## 2430 org.androidannotations.test.ereceiver
## 2431 org.androidannotations.test.ereceiver
## 2432 org.androidannotations.test.ereceiver
## 2433 org.androidannotations.test.ereceiver
## 2434 org.androidannotations.test.ereceiver
## 2435 org.androidannotations.test.ereceiver
## 2436 org.androidannotations.test.ereceiver
## 2437 org.androidannotations.test.ereceiver
## 2438 org.androidannotations.test.eview
## 2439 org.androidannotations.test.eview
## 2440 org.androidannotations.test.eview
## 2441 org.androidannotations.test.eview
## 2442 org.androidannotations.test.eview
## 2443 org.androidannotations.test.eview
## 2444 org.androidannotations.test.eview
## 2445 org.androidannotations.test.eview
## 2446 org.androidannotations.test.eview
## 2447 org.androidannotations.test.eview
## 2448 org.androidannotations.test.eview
## 2449 org.androidannotations.test.eview
## 2450 org.androidannotations.test.instancestate
## 2451 org.androidannotations.test.instancestate
## 2452 org.androidannotations.test.instancestate
## 2453 org.androidannotations.test.instancestate
## 2454 org.androidannotations.test.instancestate
## 2455 org.androidannotations.test.instancestate
## 2456 org.androidannotations.test.instancestate
## 2457 org.androidannotations.test.instancestate
## 2458 org.androidannotations.test.instancestate
## 2459 org.androidannotations.test.instancestate
## 2460 org.androidannotations.test.instancestate
## 2461 org.androidannotations.test.instancestate
## 2462 org.androidannotations.test.instancestate
## 2463 org.androidannotations.test.instancestate
## 2464 org.androidannotations.test.instancestate
## 2465 org.androidannotations.test.instancestate
## 2466 org.androidannotations.test.instancestate
## 2467 org.androidannotations.test.instancestate
## 2468 org.androidannotations.test.instancestate
## 2469 org.androidannotations.test.instancestate
## 2470 org.androidannotations.test.instancestate
## 2471 org.androidannotations.test.instancestate
## 2472 org.androidannotations.test.instancestate
## 2473 org.androidannotations.test.instancestate
## 2474 org.androidannotations.test.menu
## 2475 org.androidannotations.test.menu
## 2476 org.androidannotations.test.menu
## 2477 org.androidannotations.test.menu
## 2478 org.androidannotations.test.menu
## 2479 org.androidannotations.test.menu
## 2480 org.androidannotations.test.menu
## 2481 org.androidannotations.test.menu
## 2482 org.androidannotations.test.menu
## 2483 org.androidannotations.test.menu
## 2484 org.androidannotations.test.menu
## 2485 org.androidannotations.test.menu
## 2486 org.androidannotations.test.menu
## 2487 org.androidannotations.test.menu
## 2488 org.androidannotations.test.menu
## 2489 org.androidannotations.test.menu
## 2490 org.androidannotations.test.menu
## 2491 org.androidannotations.test.menu
## 2492 org.androidannotations.test.menu
## 2493 org.androidannotations.test.menu
## 2494 org.androidannotations.test.menu
## 2495 org.androidannotations.test.menu
## 2496 org.androidannotations.test.menu
## 2497 org.androidannotations.test.menu
## 2498 org.androidannotations.test.nonconfiguration
## 2499 org.androidannotations.test.nonconfiguration
## 2500 org.androidannotations.test.nonconfiguration
## 2501 org.androidannotations.test.nonconfiguration
## 2502 org.androidannotations.test.nonconfiguration
## 2503 org.androidannotations.test.nonconfiguration
## 2504 org.androidannotations.test.nonconfiguration
## 2505 org.androidannotations.test.nonconfiguration
## 2506 org.androidannotations.test.nonconfiguration
## 2507 org.androidannotations.test.nonconfiguration
## 2508 org.androidannotations.test.nonconfiguration
## 2509 org.androidannotations.test.nonconfiguration
## 2510 org.androidannotations.test.preference
## 2511 org.androidannotations.test.preference
## 2512 org.androidannotations.test.preference
## 2513 org.androidannotations.test.preference
## 2514 org.androidannotations.test.preference
## 2515 org.androidannotations.test.preference
## 2516 org.androidannotations.test.preference
## 2517 org.androidannotations.test.preference
## 2518 org.androidannotations.test.preference
## 2519 org.androidannotations.test.preference
## 2520 org.androidannotations.test.preference
## 2521 org.androidannotations.test.preference
## 2522 org.androidannotations.test.preference
## 2523 org.androidannotations.test.preference
## 2524 org.androidannotations.test.preference
## 2525 org.androidannotations.test.preference
## 2526 org.androidannotations.test.preference
## 2527 org.androidannotations.test.preference
## 2528 org.androidannotations.test.preference
## 2529 org.androidannotations.test.preference
## 2530 org.androidannotations.test.preference
## 2531 org.androidannotations.test.preference
## 2532 org.androidannotations.test.preference
## 2533 org.androidannotations.test.preference
## 2534 org.androidannotations.test.preference
## 2535 org.androidannotations.test.preference
## 2536 org.androidannotations.test.preference
## 2537 org.androidannotations.test.preference
## 2538 org.androidannotations.test.preference
## 2539 org.androidannotations.test.preference
## 2540 org.androidannotations.test.preference
## 2541 org.androidannotations.test.preference
## 2542 org.androidannotations.test.preference
## 2543 org.androidannotations.test.preference
## 2544 org.androidannotations.test.preference
## 2545 org.androidannotations.test.preference
## 2546 org.androidannotations.test.preference
## 2547 org.androidannotations.test.preference
## 2548 org.androidannotations.test.preference
## 2549 org.androidannotations.test.preference
## 2550 org.androidannotations.test.preference
## 2551 org.androidannotations.test.preference
## 2552 org.androidannotations.test.preference
## 2553 org.androidannotations.test.preference
## 2554 org.androidannotations.test.preference
## 2555 org.androidannotations.test.preference
## 2556 org.androidannotations.test.preference
## 2557 org.androidannotations.test.preference
## 2558 org.androidannotations.test.preference
## 2559 org.androidannotations.test.preference
## 2560 org.androidannotations.test.preference
## 2561 org.androidannotations.test.preference
## 2562 org.androidannotations.test.preference
## 2563 org.androidannotations.test.preference
## 2564 org.androidannotations.test.preference
## 2565 org.androidannotations.test.preference
## 2566 org.androidannotations.test.preference
## 2567 org.androidannotations.test.preference
## 2568 org.androidannotations.test.preference
## 2569 org.androidannotations.test.preference
## 2570 org.androidannotations.test.preference
## 2571 org.androidannotations.test.preference
## 2572 org.androidannotations.test.preference
## 2573 org.androidannotations.test.preference
## 2574 org.androidannotations.test.preference
## 2575 org.androidannotations.test.preference
## 2576 org.androidannotations.test.preference
## 2577 org.androidannotations.test.preference
## 2578 org.androidannotations.test.preference
## 2579 org.androidannotations.test.preference
## 2580 org.androidannotations.test.preference
## 2581 org.androidannotations.test.preference
## 2582 org.androidannotations.test.preference
## 2583 org.androidannotations.test.preference
## 2584 org.androidannotations.test.preference
## 2585 org.androidannotations.test.preference
## 2586 org.androidannotations.test.prefs
## 2587 org.androidannotations.test.prefs
## 2588 org.androidannotations.test.prefs
## 2589 org.androidannotations.test.prefs
## 2590 org.androidannotations.test.prefs
## 2591 org.androidannotations.test.prefs
## 2592 org.androidannotations.test.prefs
## 2593 org.androidannotations.test.prefs
## 2594 org.androidannotations.test.prefs
## 2595 org.androidannotations.test.prefs
## 2596 org.androidannotations.test.prefs
## 2597 org.androidannotations.test.prefs
## 2598 org.androidannotations.test.receiver
## 2599 org.androidannotations.test.receiver
## 2600 org.androidannotations.test.receiver
## 2601 org.androidannotations.test.receiver
## 2602 org.androidannotations.test.receiver
## 2603 org.androidannotations.test.receiver
## 2604 org.androidannotations.test.receiver
## 2605 org.androidannotations.test.receiver
## 2606 org.androidannotations.test.receiver
## 2607 org.androidannotations.test.receiver
## 2608 org.androidannotations.test.receiver
## 2609 org.androidannotations.test.receiver
## 2610 org.androidannotations.test.receiver
## 2611 org.androidannotations.test.receiver
## 2612 org.androidannotations.test.receiver
## 2613 org.androidannotations.test.receiver
## 2614 org.androidannotations.test.receiver
## 2615 org.androidannotations.test.receiver
## 2616 org.androidannotations.test.receiver
## 2617 org.androidannotations.test.receiver
## 2618 org.androidannotations.test.receiver
## 2619 org.androidannotations.test.receiver
## 2620 org.androidannotations.test.receiver
## 2621 org.androidannotations.test.receiver
## 2622 org.androidannotations.test.res
## 2623 org.androidannotations.test.res
## 2624 org.androidannotations.test.res
## 2625 org.androidannotations.test.res
## 2626 org.androidannotations.test.res
## 2627 org.androidannotations.test.res
## 2628 org.androidannotations.test.res
## 2629 org.androidannotations.test.res
## 2630 org.androidannotations.test.res
## 2631 org.androidannotations.test.res
## 2632 org.androidannotations.test.res
## 2633 org.androidannotations.test.res
## 2634 org.androidannotations.test.trace
## 2635 org.androidannotations.test.trace
## 2636 org.androidannotations.test.trace
## 2637 org.androidannotations.test.trace
## 2638 org.androidannotations.test.trace
## 2639 org.androidannotations.test.trace
## 2640 org.androidannotations.test.trace
## 2641 org.androidannotations.test.trace
## 2642 org.androidannotations.test.trace
## 2643 org.androidannotations.test.trace
## 2644 org.androidannotations.test.trace
## 2645 org.androidannotations.test.trace
## 2646 org.androidannotations.test.trace
## 2647 org.androidannotations.test.trace
## 2648 org.androidannotations.test.trace
## 2649 org.androidannotations.test.trace
## 2650 org.androidannotations.test.trace
## 2651 org.androidannotations.test.trace
## 2652 org.androidannotations.test.trace
## 2653 org.androidannotations.test.trace
## 2654 org.androidannotations.test.trace
## 2655 org.androidannotations.test.trace
## 2656 org.androidannotations.test.trace
## 2657 org.androidannotations.test.trace
## 2658 org.androidannotations.rest.spring.test
## 2659 org.androidannotations.rest.spring.test
## 2660 org.androidannotations.rest.spring.test
## 2661 org.androidannotations.rest.spring.test
## 2662 org.androidannotations.rest.spring.test
## 2663 org.androidannotations.rest.spring.test
## 2664 org.androidannotations.rest.spring.test
## 2665 org.androidannotations.rest.spring.test
## 2666 org.androidannotations.rest.spring.test
## 2667 org.androidannotations.rest.spring.test
## 2668 org.androidannotations.rest.spring.test
## 2669 org.androidannotations.rest.spring.test
## 2670 org.androidannotations.rest.spring.test
## 2671 org.androidannotations.rest.spring.test
## 2672 org.androidannotations.rest.spring.test
## 2673 org.androidannotations.rest.spring.test
## 2674 org.androidannotations.rest.spring.test
## 2675 org.androidannotations.rest.spring.test
## 2676 org.androidannotations.rest.spring.test
## 2677 org.androidannotations.rest.spring.test
## 2678 org.androidannotations.rest.spring.test
## 2679 org.androidannotations.rest.spring.test
## 2680 org.androidannotations.rest.spring.test
## 2681 org.androidannotations.rest.spring.test
## 2682 org.androidannotations.roboguice.test
## 2683 org.androidannotations.roboguice.test
## 2684 org.androidannotations.roboguice.test
## 2685 org.androidannotations.roboguice.test
## 2686 org.androidannotations.roboguice.test
## 2687 org.androidannotations.roboguice.test
## 2688 org.androidannotations.roboguice.test
## 2689 org.androidannotations.roboguice.test
## 2690 org.androidannotations.roboguice.test
## 2691 org.androidannotations.roboguice.test
## 2692 org.androidannotations.roboguice.test
## 2693 org.androidannotations.roboguice.test
## 2694 org.androidannotations.helper
## 2695 org.androidannotations.helper
## 2696 org.androidannotations.helper
## 2697 org.androidannotations.helper
## 2698 org.androidannotations.helper
## 2699 org.androidannotations.helper
## 2700 org.androidannotations.helper
## 2701 org.androidannotations.helper
## 2702 org.androidannotations.helper
## 2703 org.androidannotations.helper
## 2704 org.androidannotations.helper
## 2705 org.androidannotations.helper
## 2706 org.androidannotations.internal.helper
## 2707 org.androidannotations.internal.helper
## 2708 org.androidannotations.internal.helper
## 2709 org.androidannotations.internal.helper
## 2710 org.androidannotations.internal.helper
## 2711 org.androidannotations.internal.helper
## 2712 org.androidannotations.internal.helper
## 2713 org.androidannotations.internal.helper
## 2714 org.androidannotations.internal.helper
## 2715 org.androidannotations.internal.helper
## 2716 org.androidannotations.internal.helper
## 2717 org.androidannotations.internal.helper
## 2718 org.androidannotations.internal.helper
## 2719 org.androidannotations.internal.helper
## 2720 org.androidannotations.internal.helper
## 2721 org.androidannotations.internal.helper
## 2722 org.androidannotations.internal.helper
## 2723 org.androidannotations.internal.helper
## 2724 org.androidannotations.internal.helper
## 2725 org.androidannotations.internal.helper
## 2726 org.androidannotations.internal.helper
## 2727 org.androidannotations.internal.helper
## 2728 org.androidannotations.internal.helper
## 2729 org.androidannotations.internal.helper
## 2730 org.androidannotations.logger.formatter
## 2731 org.androidannotations.logger.formatter
## 2732 org.androidannotations.logger.formatter
## 2733 org.androidannotations.logger.formatter
## 2734 org.androidannotations.logger.formatter
## 2735 org.androidannotations.logger.formatter
## 2736 org.androidannotations.logger.formatter
## 2737 org.androidannotations.logger.formatter
## 2738 org.androidannotations.logger.formatter
## 2739 org.androidannotations.logger.formatter
## 2740 org.androidannotations.logger.formatter
## 2741 org.androidannotations.logger.formatter
## 2742 org.androidannotations.logger.formatter
## 2743 org.androidannotations.logger.formatter
## 2744 org.androidannotations.logger
## 2745 org.androidannotations.logger
## 2746 org.androidannotations.logger
## 2747 org.androidannotations.logger
## 2748 org.androidannotations.logger
## 2749 org.androidannotations.logger
## 2750 org.androidannotations.logger
## 2751 org.androidannotations.logger
## 2752 org.androidannotations.logger
## 2753 org.androidannotations.logger
## 2754 org.androidannotations.logger
## 2755 org.androidannotations.logger
## 2756 org.androidannotations.logger
## 2757 org.androidannotations.logger
## 2758 org.androidannotations.test
## 2759 org.androidannotations.test
## 2760 org.androidannotations.test
## 2761 org.androidannotations.test
## 2762 org.androidannotations.test
## 2763 org.androidannotations.test
## 2764 org.androidannotations.test
## 2765 org.androidannotations.test
## 2766 org.androidannotations.test
## 2767 org.androidannotations.test
## 2768 org.androidannotations.test
## 2769 org.androidannotations.test
## 2770 org.androidannotations.test
## 2771 org.androidannotations.test
## 2772 org.androidannotations.test
## 2773 org.androidannotations.test
## 2774 org.androidannotations.test
## 2775 org.androidannotations.test
## 2776 org.androidannotations.test
## 2777 org.androidannotations.test
## 2778 org.androidannotations.test
## 2779 org.androidannotations.test
## 2780 org.androidannotations.test
## 2781 org.androidannotations.test
## 2782 org.androidannotations.test
## 2783 org.androidannotations.test
## 2784 org.androidannotations.test
## 2785 org.androidannotations.test
## 2786 org.androidannotations.test
## 2787 org.androidannotations.test
## 2788 org.androidannotations.test
## 2789 org.androidannotations.test
## 2790 org.androidannotations.test
## 2791 org.androidannotations.test
## 2792 org.androidannotations.test
## 2793 org.androidannotations.test
## 2794 org.androidannotations.test
## 2795 org.androidannotations.test
## 2796 org.androidannotations.test
## 2797 org.androidannotations.test
## 2798 org.androidannotations.test
## 2799 org.androidannotations.test
## 2800 org.androidannotations.test
## 2801 org.androidannotations.test
## 2802 org.androidannotations.test
## 2803 org.androidannotations.test
## 2804 org.androidannotations.test
## 2805 org.androidannotations.test
## 2806 org.androidannotations.test
## 2807 org.androidannotations.test
## 2808 org.androidannotations.test
## 2809 org.androidannotations.test
## 2810 org.androidannotations.test
## 2811 org.androidannotations.test
## 2812 org.androidannotations.test
## 2813 org.androidannotations.test
## 2814 org.androidannotations.test
## 2815 org.androidannotations.test
## 2816 org.androidannotations.test
## 2817 org.androidannotations.test
## 2818 org.androidannotations.test
## 2819 org.androidannotations.test
## 2820 org.androidannotations.test
## 2821 org.androidannotations.test
## 2822 org.androidannotations.test
## 2823 org.androidannotations.test
## 2824 org.androidannotations.test
## 2825 org.androidannotations.test
## 2826 org.androidannotations.test
## 2827 org.androidannotations.test
## 2828 org.androidannotations.test
## 2829 org.androidannotations.test
## 2830 org.androidannotations.test
## 2831 org.androidannotations.test
## 2832 org.androidannotations.test
## 2833 org.androidannotations.test
## 2834 org.androidannotations.test
## 2835 org.androidannotations.test
## 2836 org.androidannotations.test
## 2837 org.androidannotations.test
## 2838 org.androidannotations.test
## 2839 org.androidannotations.test
## 2840 org.androidannotations.test
## 2841 org.androidannotations.test
## 2842 org.androidannotations.test
## 2843 org.androidannotations.test
## 2844 org.androidannotations.test
## 2845 org.androidannotations.test
## 2846 org.androidannotations.test
## 2847 org.androidannotations.test
## 2848 org.androidannotations.test
## 2849 org.androidannotations.test
## 2850 org.androidannotations.test
## 2851 org.androidannotations.test
## 2852 org.androidannotations.test
## 2853 org.androidannotations.test
## 2854 org.androidannotations.test
## 2855 org.androidannotations.test
## 2856 org.androidannotations.test
## 2857 org.androidannotations.test
## 2858 org.androidannotations.test
## 2859 org.androidannotations.test
## 2860 org.androidannotations.test
## 2861 org.androidannotations.test
## 2862 org.androidannotations.test
## 2863 org.androidannotations.test
## 2864 org.androidannotations.test
## 2865 org.androidannotations.test
## 2866 org.androidannotations.test
## 2867 org.androidannotations.test
## 2868 org.androidannotations.test
## 2869 org.androidannotations.test
## 2870 org.androidannotations.test
## 2871 org.androidannotations.test
## 2872 org.androidannotations.test
## 2873 org.androidannotations.test
## 2874 org.androidannotations.test
## 2875 org.androidannotations.test
## 2876 org.androidannotations.test
## 2877 org.androidannotations.test
## 2878 org.androidannotations.test
## 2879 org.androidannotations.test
## 2880 org.androidannotations.test
## 2881 org.androidannotations.test
## 2882 org.androidannotations.test
## 2883 org.androidannotations.test
## 2884 org.androidannotations.test
## 2885 org.androidannotations.test
## 2886 org.androidannotations.test
## 2887 org.androidannotations.test
## 2888 org.androidannotations.test
## 2889 org.androidannotations.test
## 2890 org.androidannotations.test
## 2891 org.androidannotations.test
## 2892 org.androidannotations.test
## 2893 org.androidannotations.test
## 2894 org.androidannotations.test
## 2895 org.androidannotations.test
## 2896 org.androidannotations.test
## 2897 org.androidannotations.test
## 2898 org.androidannotations.test
## 2899 org.androidannotations.test
## 2900 org.androidannotations.test
## 2901 org.androidannotations.test
## 2902 org.androidannotations.test
## 2903 org.androidannotations.test
## 2904 org.androidannotations.test
## 2905 org.androidannotations.test
## 2906 org.androidannotations.test
## 2907 org.androidannotations.test
## 2908 org.androidannotations.test
## 2909 org.androidannotations.test
## 2910 org.androidannotations.test
## 2911 org.androidannotations.test
## 2912 org.androidannotations.test
## 2913 org.androidannotations.test
## 2914 org.androidannotations.test
## 2915 org.androidannotations.test
## 2916 org.androidannotations.test
## 2917 org.androidannotations.test
## 2918 org.androidannotations.test
## 2919 org.androidannotations.test
## 2920 org.androidannotations.test
## 2921 org.androidannotations.test
## 2922 org.androidannotations.test
## 2923 org.androidannotations.test
## 2924 org.androidannotations.test
## 2925 org.androidannotations.test
## 2926 org.androidannotations.test
## 2927 org.androidannotations.test
## 2928 org.androidannotations.test
## 2929 org.androidannotations.test
## 2930 org.androidannotations.test
## 2931 org.androidannotations.test
## 2932 org.androidannotations.test
## 2933 org.androidannotations.test
## 2934 org.androidannotations.test
## 2935 org.androidannotations.test
## 2936 org.androidannotations.test
## 2937 org.androidannotations.test
## 2938 org.androidannotations.test
## 2939 org.androidannotations.test
## 2940 org.androidannotations.test
## 2941 org.androidannotations.test
## 2942 org.androidannotations.test
## 2943 org.androidannotations.test
## 2944 org.androidannotations.test
## 2945 org.androidannotations.test
## 2946 org.androidannotations.test
## 2947 org.androidannotations.test
## 2948 org.androidannotations.test
## 2949 org.androidannotations.test
## 2950 org.androidannotations.test
## 2951 org.androidannotations.test
## 2952 org.androidannotations.test
## 2953 org.androidannotations.test
## 2954 org.androidannotations.test
## 2955 org.androidannotations.test
## 2956 org.androidannotations.test
## 2957 org.androidannotations.test
## 2958 org.androidannotations.test
## 2959 org.androidannotations.test
## 2960 org.androidannotations.test
## 2961 org.androidannotations.test
## 2962 org.androidannotations.test
## 2963 org.androidannotations.test
## 2964 org.androidannotations.test
## 2965 org.androidannotations.test
## 2966 org.androidannotations.test
## 2967 org.androidannotations.test
## 2968 org.androidannotations.test
## 2969 org.androidannotations.test
## 2970 org.androidannotations.test
## 2971 org.androidannotations.test
## 2972 org.androidannotations.test
## 2973 org.androidannotations.test
## 2974 org.androidannotations.test
## 2975 org.androidannotations.test
## 2976 org.androidannotations.test
## 2977 org.androidannotations.test
## 2978 org.androidannotations.test
## 2979 org.androidannotations.test
## 2980 org.androidannotations.test
## 2981 org.androidannotations.test
## 2982 org.androidannotations.test
## 2983 org.androidannotations.test
## 2984 org.androidannotations.test
## 2985 org.androidannotations.test
## 2986 org.androidannotations.test
## 2987 org.androidannotations.test
## 2988 org.androidannotations.test
## 2989 org.androidannotations.test
## 2990 org.androidannotations.test
## 2991 org.androidannotations.test
## 2992 org.androidannotations.test
## 2993 org.androidannotations.test
## 2994 org.androidannotations.test
## 2995 org.androidannotations.test
## 2996 org.androidannotations.test
## 2997 org.androidannotations.test
## 2998 org.androidannotations.test
## 2999 org.androidannotations.test
## 3000 org.androidannotations.test
## 3001 org.androidannotations.test
## 3002 org.androidannotations.test
## 3003 org.androidannotations.test
## 3004 org.androidannotations.test
## 3005 org.androidannotations.test
## 3006 org.androidannotations.test
## 3007 org.androidannotations.test
## 3008 org.androidannotations.test
## 3009 org.androidannotations.test
## 3010 org.androidannotations.test
## 3011 org.androidannotations.test
## 3012 org.androidannotations.test
## 3013 org.androidannotations.test
## 3014 org.androidannotations.test
## 3015 org.androidannotations.test
## 3016 org.androidannotations.test
## 3017 org.androidannotations.test
## 3018 org.androidannotations.test
## 3019 org.androidannotations.test
## 3020 org.androidannotations.test
## 3021 org.androidannotations.test
## 3022 org.androidannotations.test
## 3023 org.androidannotations.test
## 3024 org.androidannotations.test
## 3025 org.androidannotations.test
## 3026 org.androidannotations.test
## 3027 org.androidannotations.test
## 3028 org.androidannotations.test
## 3029 org.androidannotations.test
## 3030 org.androidannotations.test
## 3031 org.androidannotations.test
## 3032 org.androidannotations.test
## 3033 org.androidannotations.test
## 3034 org.androidannotations.test
## 3035 org.androidannotations.test
## 3036 org.androidannotations.test
## 3037 org.androidannotations.test
## 3038 org.androidannotations.test
## 3039 org.androidannotations.test
## 3040 org.androidannotations.test
## 3041 org.androidannotations.test
## 3042 org.androidannotations.test
## 3043 org.androidannotations.test
## 3044 org.androidannotations.test
## 3045 org.androidannotations.test
## 3046 org.androidannotations.test
## 3047 org.androidannotations.test
## 3048 org.androidannotations.test
## 3049 org.androidannotations.test
## 3050 org.androidannotations.test
## 3051 org.androidannotations.test
## 3052 org.androidannotations.test
## 3053 org.androidannotations.test
## 3054 org.androidannotations.test
## 3055 org.androidannotations.test
## 3056 org.androidannotations.test
## 3057 org.androidannotations.test
## 3058 org.androidannotations.test.afterextras
## 3059 org.androidannotations.test.afterextras
## 3060 org.androidannotations.test.afterextras
## 3061 org.androidannotations.test.afterextras
## 3062 org.androidannotations.test.afterextras
## 3063 org.androidannotations.test.afterextras
## 3064 org.androidannotations.test.afterextras
## 3065 org.androidannotations.test.afterextras
## 3066 org.androidannotations.test.afterextras
## 3067 org.androidannotations.test.afterextras
## 3068 org.androidannotations.test.afterextras
## 3069 org.androidannotations.test.afterextras
## 3070 org.androidannotations.test.afterextras
## 3071 org.androidannotations.test.afterextras
## 3072 org.androidannotations.test.afterextras
## 3073 org.androidannotations.test.afterextras
## 3074 org.androidannotations.test.afterextras
## 3075 org.androidannotations.test.afterextras
## 3076 org.androidannotations.test.afterextras
## 3077 org.androidannotations.test.afterextras
## 3078 org.androidannotations.test.afterextras
## 3079 org.androidannotations.test.afterextras
## 3080 org.androidannotations.test.afterextras
## 3081 org.androidannotations.test.afterextras
## 3082 org.androidannotations.test.afterinject
## 3083 org.androidannotations.test.afterinject
## 3084 org.androidannotations.test.afterinject
## 3085 org.androidannotations.test.afterinject
## 3086 org.androidannotations.test.afterinject
## 3087 org.androidannotations.test.afterinject
## 3088 org.androidannotations.test.afterinject
## 3089 org.androidannotations.test.afterinject
## 3090 org.androidannotations.test.afterinject
## 3091 org.androidannotations.test.afterinject
## 3092 org.androidannotations.test.afterinject
## 3093 org.androidannotations.test.afterinject
## 3094 org.androidannotations.test.afterinject
## 3095 org.androidannotations.test.afterinject
## 3096 org.androidannotations.test.afterinject
## 3097 org.androidannotations.test.afterinject
## 3098 org.androidannotations.test.afterinject
## 3099 org.androidannotations.test.afterinject
## 3100 org.androidannotations.test.afterinject
## 3101 org.androidannotations.test.afterinject
## 3102 org.androidannotations.test.afterinject
## 3103 org.androidannotations.test.afterinject
## 3104 org.androidannotations.test.afterinject
## 3105 org.androidannotations.test.afterinject
## 3106 org.androidannotations.test.afterinject
## 3107 org.androidannotations.test.afterinject
## 3108 org.androidannotations.test.afterinject
## 3109 org.androidannotations.test.afterinject
## 3110 org.androidannotations.test.afterinject
## 3111 org.androidannotations.test.afterinject
## 3112 org.androidannotations.test.afterinject
## 3113 org.androidannotations.test.afterinject
## 3114 org.androidannotations.test.afterinject
## 3115 org.androidannotations.test.afterinject
## 3116 org.androidannotations.test.afterinject
## 3117 org.androidannotations.test.afterinject
## 3118 org.androidannotations.test.afterviews
## 3119 org.androidannotations.test.afterviews
## 3120 org.androidannotations.test.afterviews
## 3121 org.androidannotations.test.afterviews
## 3122 org.androidannotations.test.afterviews
## 3123 org.androidannotations.test.afterviews
## 3124 org.androidannotations.test.afterviews
## 3125 org.androidannotations.test.afterviews
## 3126 org.androidannotations.test.afterviews
## 3127 org.androidannotations.test.afterviews
## 3128 org.androidannotations.test.afterviews
## 3129 org.androidannotations.test.afterviews
## 3130 org.androidannotations.test.afterviews
## 3131 org.androidannotations.test.afterviews
## 3132 org.androidannotations.test.afterviews
## 3133 org.androidannotations.test.afterviews
## 3134 org.androidannotations.test.afterviews
## 3135 org.androidannotations.test.afterviews
## 3136 org.androidannotations.test.afterviews
## 3137 org.androidannotations.test.afterviews
## 3138 org.androidannotations.test.afterviews
## 3139 org.androidannotations.test.afterviews
## 3140 org.androidannotations.test.afterviews
## 3141 org.androidannotations.test.afterviews
## 3142 org.androidannotations.test.ebean
## 3143 org.androidannotations.test.ebean
## 3144 org.androidannotations.test.ebean
## 3145 org.androidannotations.test.ebean
## 3146 org.androidannotations.test.ebean
## 3147 org.androidannotations.test.ebean
## 3148 org.androidannotations.test.ebean
## 3149 org.androidannotations.test.ebean
## 3150 org.androidannotations.test.ebean
## 3151 org.androidannotations.test.ebean
## 3152 org.androidannotations.test.ebean
## 3153 org.androidannotations.test.ebean
## 3154 org.androidannotations.test.ebean
## 3155 org.androidannotations.test.ebean
## 3156 org.androidannotations.test.ebean
## 3157 org.androidannotations.test.ebean
## 3158 org.androidannotations.test.ebean
## 3159 org.androidannotations.test.ebean
## 3160 org.androidannotations.test.ebean
## 3161 org.androidannotations.test.ebean
## 3162 org.androidannotations.test.ebean
## 3163 org.androidannotations.test.ebean
## 3164 org.androidannotations.test.ebean
## 3165 org.androidannotations.test.ebean
## 3166 org.androidannotations.test.ebean
## 3167 org.androidannotations.test.ebean
## 3168 org.androidannotations.test.ebean
## 3169 org.androidannotations.test.ebean
## 3170 org.androidannotations.test.ebean
## 3171 org.androidannotations.test.ebean
## 3172 org.androidannotations.test.ebean
## 3173 org.androidannotations.test.ebean
## 3174 org.androidannotations.test.ebean
## 3175 org.androidannotations.test.ebean
## 3176 org.androidannotations.test.ebean
## 3177 org.androidannotations.test.ebean
## 3178 org.androidannotations.test.ebean
## 3179 org.androidannotations.test.ebean
## 3180 org.androidannotations.test.ebean
## 3181 org.androidannotations.test.ebean
## 3182 org.androidannotations.test.ebean
## 3183 org.androidannotations.test.ebean
## 3184 org.androidannotations.test.ebean
## 3185 org.androidannotations.test.ebean
## 3186 org.androidannotations.test.ebean
## 3187 org.androidannotations.test.ebean
## 3188 org.androidannotations.test.ebean
## 3189 org.androidannotations.test.ebean
## 3190 org.androidannotations.test.ebean
## 3191 org.androidannotations.test.ebean
## 3192 org.androidannotations.test.ebean
## 3193 org.androidannotations.test.ebean
## 3194 org.androidannotations.test.ebean
## 3195 org.androidannotations.test.ebean
## 3196 org.androidannotations.test.ebean
## 3197 org.androidannotations.test.ebean
## 3198 org.androidannotations.test.ebean
## 3199 org.androidannotations.test.ebean
## 3200 org.androidannotations.test.ebean
## 3201 org.androidannotations.test.ebean
## 3202 org.androidannotations.test.ebean
## 3203 org.androidannotations.test.ebean
## 3204 org.androidannotations.test.ebean
## 3205 org.androidannotations.test.ebean
## 3206 org.androidannotations.test.ebean
## 3207 org.androidannotations.test.ebean
## 3208 org.androidannotations.test.ebean
## 3209 org.androidannotations.test.ebean
## 3210 org.androidannotations.test.ebean
## 3211 org.androidannotations.test.ebean
## 3212 org.androidannotations.test.ebean
## 3213 org.androidannotations.test.ebean
## 3214 org.androidannotations.test.efragment
## 3215 org.androidannotations.test.efragment
## 3216 org.androidannotations.test.efragment
## 3217 org.androidannotations.test.efragment
## 3218 org.androidannotations.test.efragment
## 3219 org.androidannotations.test.efragment
## 3220 org.androidannotations.test.efragment
## 3221 org.androidannotations.test.efragment
## 3222 org.androidannotations.test.efragment
## 3223 org.androidannotations.test.efragment
## 3224 org.androidannotations.test.efragment
## 3225 org.androidannotations.test.efragment
## 3226 org.androidannotations.test.efragment
## 3227 org.androidannotations.test.efragment
## 3228 org.androidannotations.test.efragment
## 3229 org.androidannotations.test.efragment
## 3230 org.androidannotations.test.efragment
## 3231 org.androidannotations.test.efragment
## 3232 org.androidannotations.test.efragment
## 3233 org.androidannotations.test.efragment
## 3234 org.androidannotations.test.efragment
## 3235 org.androidannotations.test.efragment
## 3236 org.androidannotations.test.efragment
## 3237 org.androidannotations.test.efragment
## 3238 org.androidannotations.test.efragment
## 3239 org.androidannotations.test.efragment
## 3240 org.androidannotations.test.efragment
## 3241 org.androidannotations.test.efragment
## 3242 org.androidannotations.test.efragment
## 3243 org.androidannotations.test.efragment
## 3244 org.androidannotations.test.efragment
## 3245 org.androidannotations.test.efragment
## 3246 org.androidannotations.test.efragment
## 3247 org.androidannotations.test.efragment
## 3248 org.androidannotations.test.efragment
## 3249 org.androidannotations.test.efragment
## 3250 org.androidannotations.test.efragment
## 3251 org.androidannotations.test.efragment
## 3252 org.androidannotations.test.efragment
## 3253 org.androidannotations.test.efragment
## 3254 org.androidannotations.test.efragment
## 3255 org.androidannotations.test.efragment
## 3256 org.androidannotations.test.efragment
## 3257 org.androidannotations.test.efragment
## 3258 org.androidannotations.test.efragment
## 3259 org.androidannotations.test.efragment
## 3260 org.androidannotations.test.efragment
## 3261 org.androidannotations.test.efragment
## 3262 org.androidannotations.test.efragment
## 3263 org.androidannotations.test.efragment
## 3264 org.androidannotations.test.efragment
## 3265 org.androidannotations.test.efragment
## 3266 org.androidannotations.test.efragment
## 3267 org.androidannotations.test.efragment
## 3268 org.androidannotations.test.efragment
## 3269 org.androidannotations.test.efragment
## 3270 org.androidannotations.test.efragment
## 3271 org.androidannotations.test.efragment
## 3272 org.androidannotations.test.efragment
## 3273 org.androidannotations.test.efragment
## 3274 org.androidannotations.test.efragment
## 3275 org.androidannotations.test.efragment
## 3276 org.androidannotations.test.efragment
## 3277 org.androidannotations.test.efragment
## 3278 org.androidannotations.test.efragment
## 3279 org.androidannotations.test.efragment
## 3280 org.androidannotations.test.efragment
## 3281 org.androidannotations.test.efragment
## 3282 org.androidannotations.test.efragment
## 3283 org.androidannotations.test.efragment
## 3284 org.androidannotations.test.efragment
## 3285 org.androidannotations.test.efragment
## 3286 org.androidannotations.test.efragment
## 3287 org.androidannotations.test.efragment
## 3288 org.androidannotations.test.efragment
## 3289 org.androidannotations.test.efragment
## 3290 org.androidannotations.test.efragment
## 3291 org.androidannotations.test.efragment
## 3292 org.androidannotations.test.efragment
## 3293 org.androidannotations.test.efragment
## 3294 org.androidannotations.test.efragment
## 3295 org.androidannotations.test.efragment
## 3296 org.androidannotations.test.efragment
## 3297 org.androidannotations.test.efragment
## 3298 org.androidannotations.test.efragment
## 3299 org.androidannotations.test.efragment
## 3300 org.androidannotations.test.efragment
## 3301 org.androidannotations.test.efragment
## 3302 org.androidannotations.test.efragment
## 3303 org.androidannotations.test.efragment
## 3304 org.androidannotations.test.efragment
## 3305 org.androidannotations.test.efragment
## 3306 org.androidannotations.test.efragment
## 3307 org.androidannotations.test.efragment
## 3308 org.androidannotations.test.efragment
## 3309 org.androidannotations.test.efragment
## 3310 org.androidannotations.test.ereceiver
## 3311 org.androidannotations.test.ereceiver
## 3312 org.androidannotations.test.ereceiver
## 3313 org.androidannotations.test.ereceiver
## 3314 org.androidannotations.test.ereceiver
## 3315 org.androidannotations.test.ereceiver
## 3316 org.androidannotations.test.ereceiver
## 3317 org.androidannotations.test.ereceiver
## 3318 org.androidannotations.test.ereceiver
## 3319 org.androidannotations.test.ereceiver
## 3320 org.androidannotations.test.ereceiver
## 3321 org.androidannotations.test.ereceiver
## 3322 org.androidannotations.test.eview
## 3323 org.androidannotations.test.eview
## 3324 org.androidannotations.test.eview
## 3325 org.androidannotations.test.eview
## 3326 org.androidannotations.test.eview
## 3327 org.androidannotations.test.eview
## 3328 org.androidannotations.test.eview
## 3329 org.androidannotations.test.eview
## 3330 org.androidannotations.test.eview
## 3331 org.androidannotations.test.eview
## 3332 org.androidannotations.test.eview
## 3333 org.androidannotations.test.eview
## 3334 org.androidannotations.test.instancestate
## 3335 org.androidannotations.test.instancestate
## 3336 org.androidannotations.test.instancestate
## 3337 org.androidannotations.test.instancestate
## 3338 org.androidannotations.test.instancestate
## 3339 org.androidannotations.test.instancestate
## 3340 org.androidannotations.test.instancestate
## 3341 org.androidannotations.test.instancestate
## 3342 org.androidannotations.test.instancestate
## 3343 org.androidannotations.test.instancestate
## 3344 org.androidannotations.test.instancestate
## 3345 org.androidannotations.test.instancestate
## 3346 org.androidannotations.test.instancestate
## 3347 org.androidannotations.test.instancestate
## 3348 org.androidannotations.test.instancestate
## 3349 org.androidannotations.test.instancestate
## 3350 org.androidannotations.test.instancestate
## 3351 org.androidannotations.test.instancestate
## 3352 org.androidannotations.test.instancestate
## 3353 org.androidannotations.test.instancestate
## 3354 org.androidannotations.test.instancestate
## 3355 org.androidannotations.test.instancestate
## 3356 org.androidannotations.test.instancestate
## 3357 org.androidannotations.test.instancestate
## 3358 org.androidannotations.test.menu
## 3359 org.androidannotations.test.menu
## 3360 org.androidannotations.test.menu
## 3361 org.androidannotations.test.menu
## 3362 org.androidannotations.test.menu
## 3363 org.androidannotations.test.menu
## 3364 org.androidannotations.test.menu
## 3365 org.androidannotations.test.menu
## 3366 org.androidannotations.test.menu
## 3367 org.androidannotations.test.menu
## 3368 org.androidannotations.test.menu
## 3369 org.androidannotations.test.menu
## 3370 org.androidannotations.test.menu
## 3371 org.androidannotations.test.menu
## 3372 org.androidannotations.test.menu
## 3373 org.androidannotations.test.menu
## 3374 org.androidannotations.test.menu
## 3375 org.androidannotations.test.menu
## 3376 org.androidannotations.test.menu
## 3377 org.androidannotations.test.menu
## 3378 org.androidannotations.test.menu
## 3379 org.androidannotations.test.menu
## 3380 org.androidannotations.test.menu
## 3381 org.androidannotations.test.menu
## 3382 org.androidannotations.test.nonconfiguration
## 3383 org.androidannotations.test.nonconfiguration
## 3384 org.androidannotations.test.nonconfiguration
## 3385 org.androidannotations.test.nonconfiguration
## 3386 org.androidannotations.test.nonconfiguration
## 3387 org.androidannotations.test.nonconfiguration
## 3388 org.androidannotations.test.nonconfiguration
## 3389 org.androidannotations.test.nonconfiguration
## 3390 org.androidannotations.test.nonconfiguration
## 3391 org.androidannotations.test.nonconfiguration
## 3392 org.androidannotations.test.nonconfiguration
## 3393 org.androidannotations.test.nonconfiguration
## 3394 org.androidannotations.test.preference
## 3395 org.androidannotations.test.preference
## 3396 org.androidannotations.test.preference
## 3397 org.androidannotations.test.preference
## 3398 org.androidannotations.test.preference
## 3399 org.androidannotations.test.preference
## 3400 org.androidannotations.test.preference
## 3401 org.androidannotations.test.preference
## 3402 org.androidannotations.test.preference
## 3403 org.androidannotations.test.preference
## 3404 org.androidannotations.test.preference
## 3405 org.androidannotations.test.preference
## 3406 org.androidannotations.test.preference
## 3407 org.androidannotations.test.preference
## 3408 org.androidannotations.test.preference
## 3409 org.androidannotations.test.preference
## 3410 org.androidannotations.test.preference
## 3411 org.androidannotations.test.preference
## 3412 org.androidannotations.test.preference
## 3413 org.androidannotations.test.preference
## 3414 org.androidannotations.test.preference
## 3415 org.androidannotations.test.preference
## 3416 org.androidannotations.test.preference
## 3417 org.androidannotations.test.preference
## 3418 org.androidannotations.test.preference
## 3419 org.androidannotations.test.preference
## 3420 org.androidannotations.test.preference
## 3421 org.androidannotations.test.preference
## 3422 org.androidannotations.test.preference
## 3423 org.androidannotations.test.preference
## 3424 org.androidannotations.test.preference
## 3425 org.androidannotations.test.preference
## 3426 org.androidannotations.test.preference
## 3427 org.androidannotations.test.preference
## 3428 org.androidannotations.test.preference
## 3429 org.androidannotations.test.preference
## 3430 org.androidannotations.test.preference
## 3431 org.androidannotations.test.preference
## 3432 org.androidannotations.test.preference
## 3433 org.androidannotations.test.preference
## 3434 org.androidannotations.test.preference
## 3435 org.androidannotations.test.preference
## 3436 org.androidannotations.test.preference
## 3437 org.androidannotations.test.preference
## 3438 org.androidannotations.test.preference
## 3439 org.androidannotations.test.preference
## 3440 org.androidannotations.test.preference
## 3441 org.androidannotations.test.preference
## 3442 org.androidannotations.test.preference
## 3443 org.androidannotations.test.preference
## 3444 org.androidannotations.test.preference
## 3445 org.androidannotations.test.preference
## 3446 org.androidannotations.test.preference
## 3447 org.androidannotations.test.preference
## 3448 org.androidannotations.test.preference
## 3449 org.androidannotations.test.preference
## 3450 org.androidannotations.test.preference
## 3451 org.androidannotations.test.preference
## 3452 org.androidannotations.test.preference
## 3453 org.androidannotations.test.preference
## 3454 org.androidannotations.test.preference
## 3455 org.androidannotations.test.preference
## 3456 org.androidannotations.test.preference
## 3457 org.androidannotations.test.preference
## 3458 org.androidannotations.test.preference
## 3459 org.androidannotations.test.preference
## 3460 org.androidannotations.test.preference
## 3461 org.androidannotations.test.preference
## 3462 org.androidannotations.test.preference
## 3463 org.androidannotations.test.preference
## 3464 org.androidannotations.test.preference
## 3465 org.androidannotations.test.preference
## 3466 org.androidannotations.test.preference
## 3467 org.androidannotations.test.preference
## 3468 org.androidannotations.test.preference
## 3469 org.androidannotations.test.preference
## 3470 org.androidannotations.test.prefs
## 3471 org.androidannotations.test.prefs
## 3472 org.androidannotations.test.prefs
## 3473 org.androidannotations.test.prefs
## 3474 org.androidannotations.test.prefs
## 3475 org.androidannotations.test.prefs
## 3476 org.androidannotations.test.prefs
## 3477 org.androidannotations.test.prefs
## 3478 org.androidannotations.test.prefs
## 3479 org.androidannotations.test.prefs
## 3480 org.androidannotations.test.prefs
## 3481 org.androidannotations.test.prefs
## 3482 org.androidannotations.test.receiver
## 3483 org.androidannotations.test.receiver
## 3484 org.androidannotations.test.receiver
## 3485 org.androidannotations.test.receiver
## 3486 org.androidannotations.test.receiver
## 3487 org.androidannotations.test.receiver
## 3488 org.androidannotations.test.receiver
## 3489 org.androidannotations.test.receiver
## 3490 org.androidannotations.test.receiver
## 3491 org.androidannotations.test.receiver
## 3492 org.androidannotations.test.receiver
## 3493 org.androidannotations.test.receiver
## 3494 org.androidannotations.test.receiver
## 3495 org.androidannotations.test.receiver
## 3496 org.androidannotations.test.receiver
## 3497 org.androidannotations.test.receiver
## 3498 org.androidannotations.test.receiver
## 3499 org.androidannotations.test.receiver
## 3500 org.androidannotations.test.receiver
## 3501 org.androidannotations.test.receiver
## 3502 org.androidannotations.test.receiver
## 3503 org.androidannotations.test.receiver
## 3504 org.androidannotations.test.receiver
## 3505 org.androidannotations.test.receiver
## 3506 org.androidannotations.test.res
## 3507 org.androidannotations.test.res
## 3508 org.androidannotations.test.res
## 3509 org.androidannotations.test.res
## 3510 org.androidannotations.test.res
## 3511 org.androidannotations.test.res
## 3512 org.androidannotations.test.res
## 3513 org.androidannotations.test.res
## 3514 org.androidannotations.test.res
## 3515 org.androidannotations.test.res
## 3516 org.androidannotations.test.res
## 3517 org.androidannotations.test.res
## 3518 org.androidannotations.test.trace
## 3519 org.androidannotations.test.trace
## 3520 org.androidannotations.test.trace
## 3521 org.androidannotations.test.trace
## 3522 org.androidannotations.test.trace
## 3523 org.androidannotations.test.trace
## 3524 org.androidannotations.test.trace
## 3525 org.androidannotations.test.trace
## 3526 org.androidannotations.test.trace
## 3527 org.androidannotations.test.trace
## 3528 org.androidannotations.test.trace
## 3529 org.androidannotations.test.trace
## 3530 org.androidannotations.test.trace
## 3531 org.androidannotations.test.trace
## 3532 org.androidannotations.test.trace
## 3533 org.androidannotations.test.trace
## 3534 org.androidannotations.test.trace
## 3535 org.androidannotations.test.trace
## 3536 org.androidannotations.test.trace
## 3537 org.androidannotations.test.trace
## 3538 org.androidannotations.test.trace
## 3539 org.androidannotations.test.trace
## 3540 org.androidannotations.test.trace
## 3541 org.androidannotations.test.trace
## 3542 org.androidannotations.rest.spring.test
## 3543 org.androidannotations.rest.spring.test
## 3544 org.androidannotations.rest.spring.test
## 3545 org.androidannotations.rest.spring.test
## 3546 org.androidannotations.rest.spring.test
## 3547 org.androidannotations.rest.spring.test
## 3548 org.androidannotations.rest.spring.test
## 3549 org.androidannotations.rest.spring.test
## 3550 org.androidannotations.rest.spring.test
## 3551 org.androidannotations.rest.spring.test
## 3552 org.androidannotations.rest.spring.test
## 3553 org.androidannotations.rest.spring.test
## 3554 org.androidannotations.rest.spring.test
## 3555 org.androidannotations.rest.spring.test
## 3556 org.androidannotations.rest.spring.test
## 3557 org.androidannotations.rest.spring.test
## 3558 org.androidannotations.rest.spring.test
## 3559 org.androidannotations.rest.spring.test
## 3560 org.androidannotations.rest.spring.test
## 3561 org.androidannotations.rest.spring.test
## 3562 org.androidannotations.rest.spring.test
## 3563 org.androidannotations.rest.spring.test
## 3564 org.androidannotations.rest.spring.test
## 3565 org.androidannotations.rest.spring.test
## 3566 org.androidannotations.roboguice.test
## 3567 org.androidannotations.roboguice.test
## 3568 org.androidannotations.roboguice.test
## 3569 org.androidannotations.roboguice.test
## 3570 org.androidannotations.roboguice.test
## 3571 org.androidannotations.roboguice.test
## 3572 org.androidannotations.roboguice.test
## 3573 org.androidannotations.roboguice.test
## 3574 org.androidannotations.roboguice.test
## 3575 org.androidannotations.roboguice.test
## 3576 org.androidannotations.roboguice.test
## 3577 org.androidannotations.roboguice.test
## 3578 org.androidannotations.helper
## 3579 org.androidannotations.helper
## 3580 org.androidannotations.helper
## 3581 org.androidannotations.helper
## 3582 org.androidannotations.helper
## 3583 org.androidannotations.helper
## 3584 org.androidannotations.helper
## 3585 org.androidannotations.helper
## 3586 org.androidannotations.helper
## 3587 org.androidannotations.helper
## 3588 org.androidannotations.helper
## 3589 org.androidannotations.helper
## 3590 org.androidannotations.internal.helper
## 3591 org.androidannotations.internal.helper
## 3592 org.androidannotations.internal.helper
## 3593 org.androidannotations.internal.helper
## 3594 org.androidannotations.internal.helper
## 3595 org.androidannotations.internal.helper
## 3596 org.androidannotations.internal.helper
## 3597 org.androidannotations.internal.helper
## 3598 org.androidannotations.internal.helper
## 3599 org.androidannotations.internal.helper
## 3600 org.androidannotations.internal.helper
## 3601 org.androidannotations.internal.helper
## 3602 org.androidannotations.internal.helper
## 3603 org.androidannotations.internal.helper
## 3604 org.androidannotations.internal.helper
## 3605 org.androidannotations.internal.helper
## 3606 org.androidannotations.internal.helper
## 3607 org.androidannotations.internal.helper
## 3608 org.androidannotations.internal.helper
## 3609 org.androidannotations.internal.helper
## 3610 org.androidannotations.internal.helper
## 3611 org.androidannotations.internal.helper
## 3612 org.androidannotations.internal.helper
## 3613 org.androidannotations.internal.helper
## 3614 org.androidannotations.logger.formatter
## 3615 org.androidannotations.logger.formatter
## 3616 org.androidannotations.logger.formatter
## 3617 org.androidannotations.logger.formatter
## 3618 org.androidannotations.logger.formatter
## 3619 org.androidannotations.logger.formatter
## 3620 org.androidannotations.logger.formatter
## 3621 org.androidannotations.logger.formatter
## 3622 org.androidannotations.logger.formatter
## 3623 org.androidannotations.logger.formatter
## 3624 org.androidannotations.logger.formatter
## 3625 org.androidannotations.logger.formatter
## 3626 org.androidannotations.logger.formatter
## 3627 org.androidannotations.logger.formatter
## 3628 org.androidannotations.logger
## 3629 org.androidannotations.logger
## 3630 org.androidannotations.logger
## 3631 org.androidannotations.logger
## 3632 org.androidannotations.logger
## 3633 org.androidannotations.logger
## 3634 org.androidannotations.logger
## 3635 org.androidannotations.logger
## 3636 org.androidannotations.logger
## 3637 org.androidannotations.logger
## 3638 org.androidannotations.logger
## 3639 org.androidannotations.logger
## 3640 org.androidannotations.logger
## 3641 org.androidannotations.logger
## 3642 org.androidannotations.test
## 3643 org.androidannotations.test
## 3644 org.androidannotations.test
## 3645 org.androidannotations.test
## 3646 org.androidannotations.test
## 3647 org.androidannotations.test
## 3648 org.androidannotations.test
## 3649 org.androidannotations.test
## 3650 org.androidannotations.test
## 3651 org.androidannotations.test
## 3652 org.androidannotations.test
## 3653 org.androidannotations.test
## 3654 org.androidannotations.test
## 3655 org.androidannotations.test
## 3656 org.androidannotations.test
## 3657 org.androidannotations.test
## 3658 org.androidannotations.test
## 3659 org.androidannotations.test
## 3660 org.androidannotations.test
## 3661 org.androidannotations.test
## 3662 org.androidannotations.test
## 3663 org.androidannotations.test
## 3664 org.androidannotations.test
## 3665 org.androidannotations.test
## 3666 org.androidannotations.test
## 3667 org.androidannotations.test
## 3668 org.androidannotations.test
## 3669 org.androidannotations.test
## 3670 org.androidannotations.test
## 3671 org.androidannotations.test
## 3672 org.androidannotations.test
## 3673 org.androidannotations.test
## 3674 org.androidannotations.test
## 3675 org.androidannotations.test
## 3676 org.androidannotations.test
## 3677 org.androidannotations.test
## 3678 org.androidannotations.test
## 3679 org.androidannotations.test
## 3680 org.androidannotations.test
## 3681 org.androidannotations.test
## 3682 org.androidannotations.test
## 3683 org.androidannotations.test
## 3684 org.androidannotations.test
## 3685 org.androidannotations.test
## 3686 org.androidannotations.test
## 3687 org.androidannotations.test
## 3688 org.androidannotations.test
## 3689 org.androidannotations.test
## 3690 org.androidannotations.test
## 3691 org.androidannotations.test
## 3692 org.androidannotations.test
## 3693 org.androidannotations.test
## 3694 org.androidannotations.test
## 3695 org.androidannotations.test
## 3696 org.androidannotations.test
## 3697 org.androidannotations.test
## 3698 org.androidannotations.test
## 3699 org.androidannotations.test
## 3700 org.androidannotations.test
## 3701 org.androidannotations.test
## 3702 org.androidannotations.test
## 3703 org.androidannotations.test
## 3704 org.androidannotations.test
## 3705 org.androidannotations.test
## 3706 org.androidannotations.test
## 3707 org.androidannotations.test
## 3708 org.androidannotations.test
## 3709 org.androidannotations.test
## 3710 org.androidannotations.test
## 3711 org.androidannotations.test
## 3712 org.androidannotations.test
## 3713 org.androidannotations.test
## 3714 org.androidannotations.test
## 3715 org.androidannotations.test
## 3716 org.androidannotations.test
## 3717 org.androidannotations.test
## 3718 org.androidannotations.test
## 3719 org.androidannotations.test
## 3720 org.androidannotations.test
## 3721 org.androidannotations.test
## 3722 org.androidannotations.test
## 3723 org.androidannotations.test
## 3724 org.androidannotations.test
## 3725 org.androidannotations.test
## 3726 org.androidannotations.test
## 3727 org.androidannotations.test
## 3728 org.androidannotations.test
## 3729 org.androidannotations.test
## 3730 org.androidannotations.test
## 3731 org.androidannotations.test
## 3732 org.androidannotations.test
## 3733 org.androidannotations.test
## 3734 org.androidannotations.test
## 3735 org.androidannotations.test
## 3736 org.androidannotations.test
## 3737 org.androidannotations.test
## 3738 org.androidannotations.test
## 3739 org.androidannotations.test
## 3740 org.androidannotations.test
## 3741 org.androidannotations.test
## 3742 org.androidannotations.test
## 3743 org.androidannotations.test
## 3744 org.androidannotations.test
## 3745 org.androidannotations.test
## 3746 org.androidannotations.test
## 3747 org.androidannotations.test
## 3748 org.androidannotations.test
## 3749 org.androidannotations.test
## 3750 org.androidannotations.test
## 3751 org.androidannotations.test
## 3752 org.androidannotations.test
## 3753 org.androidannotations.test
## 3754 org.androidannotations.test
## 3755 org.androidannotations.test
## 3756 org.androidannotations.test
## 3757 org.androidannotations.test
## 3758 org.androidannotations.test
## 3759 org.androidannotations.test
## 3760 org.androidannotations.test
## 3761 org.androidannotations.test
## 3762 org.androidannotations.test
## 3763 org.androidannotations.test
## 3764 org.androidannotations.test
## 3765 org.androidannotations.test
## 3766 org.androidannotations.test
## 3767 org.androidannotations.test
## 3768 org.androidannotations.test
## 3769 org.androidannotations.test
## 3770 org.androidannotations.test
## 3771 org.androidannotations.test
## 3772 org.androidannotations.test
## 3773 org.androidannotations.test
## 3774 org.androidannotations.test
## 3775 org.androidannotations.test
## 3776 org.androidannotations.test
## 3777 org.androidannotations.test
## 3778 org.androidannotations.test
## 3779 org.androidannotations.test
## 3780 org.androidannotations.test
## 3781 org.androidannotations.test
## 3782 org.androidannotations.test
## 3783 org.androidannotations.test
## 3784 org.androidannotations.test
## 3785 org.androidannotations.test
## 3786 org.androidannotations.test
## 3787 org.androidannotations.test
## 3788 org.androidannotations.test
## 3789 org.androidannotations.test
## 3790 org.androidannotations.test
## 3791 org.androidannotations.test
## 3792 org.androidannotations.test
## 3793 org.androidannotations.test
## 3794 org.androidannotations.test
## 3795 org.androidannotations.test
## 3796 org.androidannotations.test
## 3797 org.androidannotations.test
## 3798 org.androidannotations.test
## 3799 org.androidannotations.test
## 3800 org.androidannotations.test
## 3801 org.androidannotations.test
## 3802 org.androidannotations.test
## 3803 org.androidannotations.test
## 3804 org.androidannotations.test
## 3805 org.androidannotations.test
## 3806 org.androidannotations.test
## 3807 org.androidannotations.test
## 3808 org.androidannotations.test
## 3809 org.androidannotations.test
## 3810 org.androidannotations.test
## 3811 org.androidannotations.test
## 3812 org.androidannotations.test
## 3813 org.androidannotations.test
## 3814 org.androidannotations.test
## 3815 org.androidannotations.test
## 3816 org.androidannotations.test
## 3817 org.androidannotations.test
## 3818 org.androidannotations.test
## 3819 org.androidannotations.test
## 3820 org.androidannotations.test
## 3821 org.androidannotations.test
## 3822 org.androidannotations.test
## 3823 org.androidannotations.test
## 3824 org.androidannotations.test
## 3825 org.androidannotations.test
## 3826 org.androidannotations.test
## 3827 org.androidannotations.test
## 3828 org.androidannotations.test
## 3829 org.androidannotations.test
## 3830 org.androidannotations.test
## 3831 org.androidannotations.test
## 3832 org.androidannotations.test
## 3833 org.androidannotations.test
## 3834 org.androidannotations.test
## 3835 org.androidannotations.test
## 3836 org.androidannotations.test
## 3837 org.androidannotations.test
## 3838 org.androidannotations.test
## 3839 org.androidannotations.test
## 3840 org.androidannotations.test
## 3841 org.androidannotations.test
## 3842 org.androidannotations.test
## 3843 org.androidannotations.test
## 3844 org.androidannotations.test
## 3845 org.androidannotations.test
## 3846 org.androidannotations.test
## Type.Name Design.Smell
## 1 AbstractActivity Unnecessary Abstraction
## 2 AbstractActivity Unnecessary Abstraction
## 3 AbstractActivity Unutilized Abstraction
## 4 AbstractActivity Unutilized Abstraction
## 5 ApplicationInjectedActivity Unnecessary Abstraction
## 6 ApplicationInjectedActivity Unnecessary Abstraction
## 7 ApplicationInjectedActivity Unutilized Abstraction
## 8 ApplicationInjectedActivity Unutilized Abstraction
## 9 ClicksHandledActivity Unutilized Abstraction
## 10 ClicksHandledActivity Unutilized Abstraction
## 11 ClicksHandledActivity Broken Hierarchy
## 12 ClicksHandledActivity Broken Hierarchy
## 13 EmptyActivityWithLayout Unnecessary Abstraction
## 14 EmptyActivityWithLayout Unnecessary Abstraction
## 15 EmptyActivityWithLayout Unutilized Abstraction
## 16 EmptyActivityWithLayout Unutilized Abstraction
## 17 EmptyActivityWithoutLayout Unnecessary Abstraction
## 18 EmptyActivityWithoutLayout Unnecessary Abstraction
## 19 FromHtmlActivity Unnecessary Abstraction
## 20 FromHtmlActivity Unnecessary Abstraction
## 21 FromHtmlActivity Unutilized Abstraction
## 22 FromHtmlActivity Unutilized Abstraction
## 23 ItemClicksHandledActivity Unutilized Abstraction
## 24 LongClicksHandledActivity Unutilized Abstraction
## 25 LongClicksHandledActivity Broken Hierarchy
## 26 TouchesHandledActivity Unutilized Abstraction
## 27 TouchesHandledActivity Broken Hierarchy
## 28 TracedActivity Multifaceted Abstraction
## 29 TracedActivity Multifaceted Abstraction
## 30 TracedActivity Unutilized Abstraction
## 31 TracedActivity Unutilized Abstraction
## 32 TracedActivity Deficient Encapsulation
## 33 TracedActivity Deficient Encapsulation
## 34 TransactionalActivity Unutilized Abstraction
## 35 TransactionalActivity Unutilized Abstraction
## 36 ViewsInjectedActivity Unutilized Abstraction
## 37 ViewsInjectedActivity Unutilized Abstraction
## 38 OptionsMenuActivity Unutilized Abstraction
## 39 OptionsMenuActivity Unutilized Abstraction
## 40 PrefsActivity Unutilized Abstraction
## 41 PrefsActivity Unutilized Abstraction
## 42 PrefsActivity Broken Modularization
## 43 PrefsActivity Broken Modularization
## 44 ResActivity Unutilized Abstraction
## 45 ResActivity Unutilized Abstraction
## 46 ResActivity Broken Modularization
## 47 ResActivity Broken Modularization
## 48 RobolectricSampleModule Unutilized Abstraction
## 49 RobolectricSampleModule Unutilized Abstraction
## 50 AbstractActivity Unnecessary Abstraction
## 51 AbstractActivity Unnecessary Abstraction
## 52 AbstractActivity Unutilized Abstraction
## 53 AbstractActivity Unutilized Abstraction
## 54 ApplicationInjectedActivity Unnecessary Abstraction
## 55 ApplicationInjectedActivity Unnecessary Abstraction
## 56 ApplicationInjectedActivity Unutilized Abstraction
## 57 ApplicationInjectedActivity Unutilized Abstraction
## 58 ClicksHandledActivity Unutilized Abstraction
## 59 ClicksHandledActivity Unutilized Abstraction
## 60 ClicksHandledActivity Broken Hierarchy
## 61 ClicksHandledActivity Broken Hierarchy
## 62 EmptyActivityWithLayout Unnecessary Abstraction
## 63 EmptyActivityWithLayout Unnecessary Abstraction
## 64 EmptyActivityWithLayout Unutilized Abstraction
## 65 EmptyActivityWithLayout Unutilized Abstraction
## 66 EmptyActivityWithoutLayout Unnecessary Abstraction
## 67 EmptyActivityWithoutLayout Unnecessary Abstraction
## 68 FromHtmlActivity Unnecessary Abstraction
## 69 FromHtmlActivity Unnecessary Abstraction
## 70 FromHtmlActivity Unutilized Abstraction
## 71 FromHtmlActivity Unutilized Abstraction
## 72 ItemClicksHandledActivity Unutilized Abstraction
## 73 LongClicksHandledActivity Unutilized Abstraction
## 74 LongClicksHandledActivity Broken Hierarchy
## 75 TouchesHandledActivity Unutilized Abstraction
## 76 TouchesHandledActivity Broken Hierarchy
## 77 TracedActivity Multifaceted Abstraction
## 78 TracedActivity Multifaceted Abstraction
## 79 TracedActivity Unutilized Abstraction
## 80 TracedActivity Unutilized Abstraction
## 81 TracedActivity Deficient Encapsulation
## 82 TracedActivity Deficient Encapsulation
## 83 TransactionalActivity Unutilized Abstraction
## 84 TransactionalActivity Unutilized Abstraction
## 85 ViewsInjectedActivity Unutilized Abstraction
## 86 ViewsInjectedActivity Unutilized Abstraction
## 87 OptionsMenuActivity Unutilized Abstraction
## 88 OptionsMenuActivity Unutilized Abstraction
## 89 PrefsActivity Unutilized Abstraction
## 90 PrefsActivity Unutilized Abstraction
## 91 PrefsActivity Broken Modularization
## 92 PrefsActivity Broken Modularization
## 93 ResActivity Unutilized Abstraction
## 94 ResActivity Unutilized Abstraction
## 95 ResActivity Broken Modularization
## 96 ResActivity Broken Modularization
## 97 RobolectricSampleModule Unutilized Abstraction
## 98 RobolectricSampleModule Unutilized Abstraction
## 99 AbstractActivity Unnecessary Abstraction
## 100 AbstractActivity Unnecessary Abstraction
## 101 AbstractActivity Unutilized Abstraction
## 102 AbstractActivity Unutilized Abstraction
## 103 ApplicationInjectedActivity Unnecessary Abstraction
## 104 ApplicationInjectedActivity Unnecessary Abstraction
## 105 ApplicationInjectedActivity Unutilized Abstraction
## 106 ApplicationInjectedActivity Unutilized Abstraction
## 107 ClicksHandledActivity Unutilized Abstraction
## 108 ClicksHandledActivity Unutilized Abstraction
## 109 ClicksHandledActivity Broken Hierarchy
## 110 ClicksHandledActivity Broken Hierarchy
## 111 EmptyActivityWithLayout Unnecessary Abstraction
## 112 EmptyActivityWithLayout Unnecessary Abstraction
## 113 EmptyActivityWithLayout Unutilized Abstraction
## 114 EmptyActivityWithLayout Unutilized Abstraction
## 115 EmptyActivityWithoutLayout Unnecessary Abstraction
## 116 EmptyActivityWithoutLayout Unnecessary Abstraction
## 117 FromHtmlActivity Unnecessary Abstraction
## 118 FromHtmlActivity Unnecessary Abstraction
## 119 FromHtmlActivity Unutilized Abstraction
## 120 FromHtmlActivity Unutilized Abstraction
## 121 ItemClicksHandledActivity Unutilized Abstraction
## 122 LongClicksHandledActivity Unutilized Abstraction
## 123 LongClicksHandledActivity Broken Hierarchy
## 124 TouchesHandledActivity Unutilized Abstraction
## 125 TouchesHandledActivity Broken Hierarchy
## 126 TracedActivity Multifaceted Abstraction
## 127 TracedActivity Multifaceted Abstraction
## 128 TracedActivity Unutilized Abstraction
## 129 TracedActivity Unutilized Abstraction
## 130 TracedActivity Deficient Encapsulation
## 131 TracedActivity Deficient Encapsulation
## 132 TransactionalActivity Unutilized Abstraction
## 133 TransactionalActivity Unutilized Abstraction
## 134 ViewsInjectedActivity Unutilized Abstraction
## 135 ViewsInjectedActivity Unutilized Abstraction
## 136 OptionsMenuActivity Unutilized Abstraction
## 137 OptionsMenuActivity Unutilized Abstraction
## 138 PrefsActivity Unutilized Abstraction
## 139 PrefsActivity Unutilized Abstraction
## 140 PrefsActivity Broken Modularization
## 141 PrefsActivity Broken Modularization
## 142 ResActivity Unutilized Abstraction
## 143 ResActivity Unutilized Abstraction
## 144 ResActivity Broken Modularization
## 145 ResActivity Broken Modularization
## 146 RobolectricSampleModule Unutilized Abstraction
## 147 RobolectricSampleModule Unutilized Abstraction
## 148 AbstractActivity Unnecessary Abstraction
## 149 AbstractActivity Unnecessary Abstraction
## 150 AbstractActivity Unutilized Abstraction
## 151 AbstractActivity Unutilized Abstraction
## 152 ApplicationInjectedActivity Unnecessary Abstraction
## 153 ApplicationInjectedActivity Unnecessary Abstraction
## 154 ApplicationInjectedActivity Unutilized Abstraction
## 155 ApplicationInjectedActivity Unutilized Abstraction
## 156 ClicksHandledActivity Multifaceted Abstraction
## 157 ClicksHandledActivity Multifaceted Abstraction
## 158 ClicksHandledActivity Unutilized Abstraction
## 159 ClicksHandledActivity Unutilized Abstraction
## 160 EmptyActivityWithLayout Unnecessary Abstraction
## 161 EmptyActivityWithLayout Unnecessary Abstraction
## 162 EmptyActivityWithLayout Unutilized Abstraction
## 163 EmptyActivityWithLayout Unutilized Abstraction
## 164 EmptyActivityWithoutLayout Unnecessary Abstraction
## 165 EmptyActivityWithoutLayout Unnecessary Abstraction
## 166 FromHtmlActivity Unnecessary Abstraction
## 167 FromHtmlActivity Unnecessary Abstraction
## 168 FromHtmlActivity Unutilized Abstraction
## 169 FromHtmlActivity Unutilized Abstraction
## 170 TracedActivity Multifaceted Abstraction
## 171 TracedActivity Multifaceted Abstraction
## 172 TracedActivity Unutilized Abstraction
## 173 TracedActivity Unutilized Abstraction
## 174 TracedActivity Deficient Encapsulation
## 175 TracedActivity Deficient Encapsulation
## 176 TransactionalActivity Unutilized Abstraction
## 177 TransactionalActivity Unutilized Abstraction
## 178 ViewsInjectedActivity Unutilized Abstraction
## 179 ViewsInjectedActivity Unutilized Abstraction
## 180 OptionsMenuActivity Unutilized Abstraction
## 181 OptionsMenuActivity Unutilized Abstraction
## 182 PrefsActivity Unutilized Abstraction
## 183 PrefsActivity Unutilized Abstraction
## 184 PrefsActivity Broken Modularization
## 185 PrefsActivity Broken Modularization
## 186 ResActivity Unutilized Abstraction
## 187 ResActivity Unutilized Abstraction
## 188 ResActivity Broken Modularization
## 189 ResActivity Broken Modularization
## 190 RobolectricSampleModule Unutilized Abstraction
## 191 RobolectricSampleModule Unutilized Abstraction
## 192 ApplicationInjectedActivity Unnecessary Abstraction
## 193 ApplicationInjectedActivity Unnecessary Abstraction
## 194 ApplicationInjectedActivity Unutilized Abstraction
## 195 ApplicationInjectedActivity Unutilized Abstraction
## 196 ClicksHandledActivity Unutilized Abstraction
## 197 ClicksHandledActivity Unutilized Abstraction
## 198 EmptyActivityWithLayout Unnecessary Abstraction
## 199 EmptyActivityWithLayout Unnecessary Abstraction
## 200 EmptyActivityWithLayout Unutilized Abstraction
## 201 EmptyActivityWithLayout Unutilized Abstraction
## 202 EmptyActivityWithoutLayout Unnecessary Abstraction
## 203 EmptyActivityWithoutLayout Unnecessary Abstraction
## 204 EmptyActivityWithoutLayout Unutilized Abstraction
## 205 EmptyActivityWithoutLayout Unutilized Abstraction
## 206 ViewsInjectedActivity Unnecessary Abstraction
## 207 ViewsInjectedActivity Unnecessary Abstraction
## 208 ViewsInjectedActivity Unutilized Abstraction
## 209 ViewsInjectedActivity Unutilized Abstraction
## 210 ClicksHandledActivity Unutilized Abstraction
## 211 ClicksHandledActivity Unutilized Abstraction
## 212 EmptyActivityWithLayout Unnecessary Abstraction
## 213 EmptyActivityWithLayout Unnecessary Abstraction
## 214 EmptyActivityWithLayout Unutilized Abstraction
## 215 EmptyActivityWithLayout Unutilized Abstraction
## 216 EmptyActivityWithoutLayout Unnecessary Abstraction
## 217 EmptyActivityWithoutLayout Unnecessary Abstraction
## 218 EmptyActivityWithoutLayout Unutilized Abstraction
## 219 EmptyActivityWithoutLayout Unutilized Abstraction
## 220 ViewsInjectedActivity Unnecessary Abstraction
## 221 ViewsInjectedActivity Unnecessary Abstraction
## 222 ViewsInjectedActivity Unutilized Abstraction
## 223 ViewsInjectedActivity Unutilized Abstraction
## 224 PrefsActivity Unutilized Abstraction
## 225 PrefsActivity Unutilized Abstraction
## 226 PrefsActivity Broken Modularization
## 227 PrefsActivity Broken Modularization
## 228 ResActivity Unnecessary Abstraction
## 229 ResActivity Unnecessary Abstraction
## 230 ResActivity Unutilized Abstraction
## 231 ResActivity Unutilized Abstraction
## 232 AbstractActivity Unnecessary Abstraction
## 233 AbstractActivity Unnecessary Abstraction
## 234 AbstractActivity Unutilized Abstraction
## 235 AbstractActivity Unutilized Abstraction
## 236 ApplicationInjectedActivity Unnecessary Abstraction
## 237 ApplicationInjectedActivity Unnecessary Abstraction
## 238 ApplicationInjectedActivity Unutilized Abstraction
## 239 ApplicationInjectedActivity Unutilized Abstraction
## 240 ClicksHandledActivity Unutilized Abstraction
## 241 ClicksHandledActivity Unutilized Abstraction
## 242 ClicksHandledActivity Broken Hierarchy
## 243 ClicksHandledActivity Broken Hierarchy
## 244 EmptyActivityWithLayout Unnecessary Abstraction
## 245 EmptyActivityWithLayout Unnecessary Abstraction
## 246 EmptyActivityWithLayout Unutilized Abstraction
## 247 EmptyActivityWithLayout Unutilized Abstraction
## 248 EmptyActivityWithoutLayout Unnecessary Abstraction
## 249 EmptyActivityWithoutLayout Unnecessary Abstraction
## 250 FromHtmlActivity Unnecessary Abstraction
## 251 FromHtmlActivity Unnecessary Abstraction
## 252 FromHtmlActivity Unutilized Abstraction
## 253 FromHtmlActivity Unutilized Abstraction
## 254 ItemClicksHandledActivity Unutilized Abstraction
## 255 LongClicksHandledActivity Unutilized Abstraction
## 256 LongClicksHandledActivity Broken Hierarchy
## 257 TouchesHandledActivity Unutilized Abstraction
## 258 TouchesHandledActivity Broken Hierarchy
## 259 TracedActivity Multifaceted Abstraction
## 260 TracedActivity Multifaceted Abstraction
## 261 TracedActivity Unutilized Abstraction
## 262 TracedActivity Unutilized Abstraction
## 263 TracedActivity Deficient Encapsulation
## 264 TracedActivity Deficient Encapsulation
## 265 TransactionalActivity Unutilized Abstraction
## 266 TransactionalActivity Unutilized Abstraction
## 267 ViewsInjectedActivity Unutilized Abstraction
## 268 ViewsInjectedActivity Unutilized Abstraction
## 269 OptionsMenuActivity Unutilized Abstraction
## 270 OptionsMenuActivity Unutilized Abstraction
## 271 PrefsActivity Unutilized Abstraction
## 272 PrefsActivity Unutilized Abstraction
## 273 PrefsActivity Broken Modularization
## 274 PrefsActivity Broken Modularization
## 275 ResActivity Unutilized Abstraction
## 276 ResActivity Unutilized Abstraction
## 277 ResActivity Broken Modularization
## 278 ResActivity Broken Modularization
## 279 RobolectricSampleModule Unutilized Abstraction
## 280 RobolectricSampleModule Unutilized Abstraction
## 281 AbstractActivity Unnecessary Abstraction
## 282 AbstractActivity Unnecessary Abstraction
## 283 AbstractActivity Unutilized Abstraction
## 284 AbstractActivity Unutilized Abstraction
## 285 ApplicationInjectedActivity Unnecessary Abstraction
## 286 ApplicationInjectedActivity Unnecessary Abstraction
## 287 ApplicationInjectedActivity Unutilized Abstraction
## 288 ApplicationInjectedActivity Unutilized Abstraction
## 289 ClicksHandledActivity Multifaceted Abstraction
## 290 ClicksHandledActivity Multifaceted Abstraction
## 291 ClicksHandledActivity Unutilized Abstraction
## 292 ClicksHandledActivity Unutilized Abstraction
## 293 EmptyActivityWithLayout Unnecessary Abstraction
## 294 EmptyActivityWithLayout Unnecessary Abstraction
## 295 EmptyActivityWithLayout Unutilized Abstraction
## 296 EmptyActivityWithLayout Unutilized Abstraction
## 297 EmptyActivityWithoutLayout Unnecessary Abstraction
## 298 EmptyActivityWithoutLayout Unnecessary Abstraction
## 299 FromHtmlActivity Unnecessary Abstraction
## 300 FromHtmlActivity Unnecessary Abstraction
## 301 FromHtmlActivity Unutilized Abstraction
## 302 FromHtmlActivity Unutilized Abstraction
## 303 TracedActivity Multifaceted Abstraction
## 304 TracedActivity Multifaceted Abstraction
## 305 TracedActivity Unutilized Abstraction
## 306 TracedActivity Unutilized Abstraction
## 307 TracedActivity Deficient Encapsulation
## 308 TracedActivity Deficient Encapsulation
## 309 TransactionalActivity Unutilized Abstraction
## 310 TransactionalActivity Unutilized Abstraction
## 311 ViewsInjectedActivity Unutilized Abstraction
## 312 ViewsInjectedActivity Unutilized Abstraction
## 313 OptionsMenuActivity Unutilized Abstraction
## 314 OptionsMenuActivity Unutilized Abstraction
## 315 PrefsActivity Unutilized Abstraction
## 316 PrefsActivity Unutilized Abstraction
## 317 PrefsActivity Broken Modularization
## 318 PrefsActivity Broken Modularization
## 319 ResActivity Unutilized Abstraction
## 320 ResActivity Unutilized Abstraction
## 321 ResActivity Broken Modularization
## 322 ResActivity Broken Modularization
## 323 RobolectricSampleModule Unutilized Abstraction
## 324 RobolectricSampleModule Unutilized Abstraction
## 325 AbstractActivity Unnecessary Abstraction
## 326 AbstractActivity Unnecessary Abstraction
## 327 AbstractActivity Unutilized Abstraction
## 328 AbstractActivity Unutilized Abstraction
## 329 ApplicationInjectedActivity Unnecessary Abstraction
## 330 ApplicationInjectedActivity Unnecessary Abstraction
## 331 ApplicationInjectedActivity Unutilized Abstraction
## 332 ApplicationInjectedActivity Unutilized Abstraction
## 333 ClicksHandledActivity Unutilized Abstraction
## 334 ClicksHandledActivity Unutilized Abstraction
## 335 ClicksHandledActivity Broken Hierarchy
## 336 ClicksHandledActivity Broken Hierarchy
## 337 EmptyActivityWithLayout Unnecessary Abstraction
## 338 EmptyActivityWithLayout Unnecessary Abstraction
## 339 EmptyActivityWithLayout Unutilized Abstraction
## 340 EmptyActivityWithLayout Unutilized Abstraction
## 341 EmptyActivityWithoutLayout Unnecessary Abstraction
## 342 EmptyActivityWithoutLayout Unnecessary Abstraction
## 343 FromHtmlActivity Unnecessary Abstraction
## 344 FromHtmlActivity Unnecessary Abstraction
## 345 FromHtmlActivity Unutilized Abstraction
## 346 FromHtmlActivity Unutilized Abstraction
## 347 ItemClicksHandledActivity Unutilized Abstraction
## 348 LongClicksHandledActivity Unutilized Abstraction
## 349 LongClicksHandledActivity Broken Hierarchy
## 350 TouchesHandledActivity Unutilized Abstraction
## 351 TouchesHandledActivity Broken Hierarchy
## 352 TracedActivity Multifaceted Abstraction
## 353 TracedActivity Multifaceted Abstraction
## 354 TracedActivity Unutilized Abstraction
## 355 TracedActivity Unutilized Abstraction
## 356 TracedActivity Deficient Encapsulation
## 357 TracedActivity Deficient Encapsulation
## 358 TransactionalActivity Unutilized Abstraction
## 359 TransactionalActivity Unutilized Abstraction
## 360 ViewsInjectedActivity Unutilized Abstraction
## 361 ViewsInjectedActivity Unutilized Abstraction
## 362 OptionsMenuActivity Unutilized Abstraction
## 363 OptionsMenuActivity Unutilized Abstraction
## 364 PrefsActivity Unutilized Abstraction
## 365 PrefsActivity Unutilized Abstraction
## 366 PrefsActivity Broken Modularization
## 367 PrefsActivity Broken Modularization
## 368 ResActivity Unutilized Abstraction
## 369 ResActivity Unutilized Abstraction
## 370 ResActivity Broken Modularization
## 371 ResActivity Broken Modularization
## 372 RobolectricSampleModule Unutilized Abstraction
## 373 RobolectricSampleModule Unutilized Abstraction
## 374 AbstractActivity Unnecessary Abstraction
## 375 AbstractActivity Unnecessary Abstraction
## 376 ApplicationInjectedActivity Unnecessary Abstraction
## 377 ApplicationInjectedActivity Unnecessary Abstraction
## 378 ApplicationInjectedActivity Unutilized Abstraction
## 379 ApplicationInjectedActivity Unutilized Abstraction
## 380 ClicksHandledActivity Unutilized Abstraction
## 381 ClicksHandledActivity Unutilized Abstraction
## 382 ClicksHandledActivity Broken Hierarchy
## 383 ClicksHandledActivity Broken Hierarchy
## 384 EmptyActivityWithLayout Unnecessary Abstraction
## 385 EmptyActivityWithLayout Unnecessary Abstraction
## 386 EmptyActivityWithLayout Unutilized Abstraction
## 387 EmptyActivityWithLayout Unutilized Abstraction
## 388 EmptyActivityWithoutLayout Unnecessary Abstraction
## 389 EmptyActivityWithoutLayout Unnecessary Abstraction
## 390 FromHtmlActivity Unnecessary Abstraction
## 391 FromHtmlActivity Unnecessary Abstraction
## 392 FromHtmlActivity Unutilized Abstraction
## 393 FromHtmlActivity Unutilized Abstraction
## 394 ItemClicksHandledActivity Unutilized Abstraction
## 395 LongClicksHandledActivity Unutilized Abstraction
## 396 LongClicksHandledActivity Broken Hierarchy
## 397 TouchesHandledActivity Unutilized Abstraction
## 398 TouchesHandledActivity Broken Hierarchy
## 399 TracedActivity Multifaceted Abstraction
## 400 TracedActivity Multifaceted Abstraction
## 401 TracedActivity Unutilized Abstraction
## 402 TracedActivity Unutilized Abstraction
## 403 TracedActivity Deficient Encapsulation
## 404 TracedActivity Deficient Encapsulation
## 405 TransactionalActivity Unutilized Abstraction
## 406 TransactionalActivity Unutilized Abstraction
## 407 ViewsInjectedActivity Unutilized Abstraction
## 408 ViewsInjectedActivity Unutilized Abstraction
## 409 OptionsMenuActivity Unutilized Abstraction
## 410 OptionsMenuActivity Unutilized Abstraction
## 411 PrefsActivity Unutilized Abstraction
## 412 PrefsActivity Unutilized Abstraction
## 413 PrefsActivity Broken Modularization
## 414 PrefsActivity Broken Modularization
## 415 ResActivity Unutilized Abstraction
## 416 ResActivity Unutilized Abstraction
## 417 ResActivity Broken Modularization
## 418 ResActivity Broken Modularization
## 419 RobolectricSampleModule Unutilized Abstraction
## 420 RobolectricSampleModule Unutilized Abstraction
## 421 AbstractActivity Unnecessary Abstraction
## 422 AbstractActivity Unnecessary Abstraction
## 423 ApplicationInjectedActivity Unnecessary Abstraction
## 424 ApplicationInjectedActivity Unnecessary Abstraction
## 425 ApplicationInjectedActivity Unutilized Abstraction
## 426 ApplicationInjectedActivity Unutilized Abstraction
## 427 ClicksHandledActivity Unutilized Abstraction
## 428 ClicksHandledActivity Unutilized Abstraction
## 429 ClicksHandledActivity Broken Hierarchy
## 430 ClicksHandledActivity Broken Hierarchy
## 431 EmptyActivityWithLayout Unnecessary Abstraction
## 432 EmptyActivityWithLayout Unnecessary Abstraction
## 433 EmptyActivityWithLayout Unutilized Abstraction
## 434 EmptyActivityWithLayout Unutilized Abstraction
## 435 EmptyActivityWithoutLayout Unnecessary Abstraction
## 436 EmptyActivityWithoutLayout Unnecessary Abstraction
## 437 FromHtmlActivity Unnecessary Abstraction
## 438 FromHtmlActivity Unnecessary Abstraction
## 439 FromHtmlActivity Unutilized Abstraction
## 440 FromHtmlActivity Unutilized Abstraction
## 441 ItemClicksHandledActivity Unutilized Abstraction
## 442 LongClicksHandledActivity Unutilized Abstraction
## 443 LongClicksHandledActivity Broken Hierarchy
## 444 TouchesHandledActivity Unutilized Abstraction
## 445 TouchesHandledActivity Broken Hierarchy
## 446 TracedActivity Multifaceted Abstraction
## 447 TracedActivity Multifaceted Abstraction
## 448 TracedActivity Unutilized Abstraction
## 449 TracedActivity Unutilized Abstraction
## 450 TracedActivity Deficient Encapsulation
## 451 TracedActivity Deficient Encapsulation
## 452 TransactionalActivity Unutilized Abstraction
## 453 TransactionalActivity Unutilized Abstraction
## 454 ViewsInjectedActivity Unutilized Abstraction
## 455 ViewsInjectedActivity Unutilized Abstraction
## 456 OptionsMenuActivity Unutilized Abstraction
## 457 OptionsMenuActivity Unutilized Abstraction
## 458 PrefsActivity Unutilized Abstraction
## 459 PrefsActivity Unutilized Abstraction
## 460 PrefsActivity Broken Modularization
## 461 PrefsActivity Broken Modularization
## 462 ResActivity Unutilized Abstraction
## 463 ResActivity Unutilized Abstraction
## 464 ResActivity Broken Modularization
## 465 ResActivity Broken Modularization
## 466 RobolectricSampleModule Unutilized Abstraction
## 467 RobolectricSampleModule Unutilized Abstraction
## 468 AndroidManifestFinder Deficient Encapsulation
## 469 AndroidManifestFinder Deficient Encapsulation
## 470 AbstractActivity Unnecessary Abstraction
## 471 AbstractActivity Unnecessary Abstraction
## 472 ApplicationInjectedActivity Unnecessary Abstraction
## 473 ApplicationInjectedActivity Unnecessary Abstraction
## 474 ApplicationInjectedActivity Unutilized Abstraction
## 475 ApplicationInjectedActivity Unutilized Abstraction
## 476 AwaitingResultFragment Unutilized Abstraction
## 477 AwaitingResultFragment Unutilized Abstraction
## 478 BackpressedActivity Unutilized Abstraction
## 479 BackpressedActivity Unutilized Abstraction
## 480 CheckedChangeHandledActivity Unutilized Abstraction
## 481 CheckedChangeHandledActivity Unutilized Abstraction
## 482 CheckedChangeHandledActivity Broken Hierarchy
## 483 CheckedChangeHandledActivity Broken Hierarchy
## 484 ClicksHandledActivity Unutilized Abstraction
## 485 ClicksHandledActivity Unutilized Abstraction
## 486 ClicksHandledActivity Broken Hierarchy
## 487 ClicksHandledActivity Broken Hierarchy
## 488 EmptyActivityWithLayout Unnecessary Abstraction
## 489 EmptyActivityWithLayout Unnecessary Abstraction
## 490 EmptyActivityWithLayout Unutilized Abstraction
## 491 EmptyActivityWithLayout Unutilized Abstraction
## 492 FocusChangeHandledActivity Unutilized Abstraction
## 493 FocusChangeHandledActivity Unutilized Abstraction
## 494 FocusChangeHandledActivity Broken Hierarchy
## 495 FocusChangeHandledActivity Broken Hierarchy
## 496 FromHtmlActivity Unnecessary Abstraction
## 497 FromHtmlActivity Unnecessary Abstraction
## 498 FromHtmlActivity Unutilized Abstraction
## 499 FromHtmlActivity Unutilized Abstraction
## 500 ItemClicksHandledActivity Unutilized Abstraction
## 501 ItemClicksHandledActivity Unutilized Abstraction
## 502 LongClicksHandledActivity Unutilized Abstraction
## 503 LongClicksHandledActivity Unutilized Abstraction
## 504 LongClicksHandledActivity Broken Hierarchy
## 505 LongClicksHandledActivity Broken Hierarchy
## 506 SeekBarChangeListenedActivity Unutilized Abstraction
## 507 SeekBarChangeListenedActivity Unutilized Abstraction
## 508 SSLConnection Unnecessary Abstraction
## 509 SSLConnection Unnecessary Abstraction
## 510 SSLConnection Unutilized Abstraction
## 511 SSLConnection Unutilized Abstraction
## 512 TextWatchedActivity Unutilized Abstraction
## 513 TextWatchedActivity Unutilized Abstraction
## 514 TouchesHandledActivity Unutilized Abstraction
## 515 TouchesHandledActivity Unutilized Abstraction
## 516 TouchesHandledActivity Broken Hierarchy
## 517 TouchesHandledActivity Broken Hierarchy
## 518 TransactionalActivity Unutilized Abstraction
## 519 TransactionalActivity Unutilized Abstraction
## 520 ViewsInjectedActivity Unutilized Abstraction
## 521 ViewsInjectedActivity Unutilized Abstraction
## 522 AfterInjectActivity Unutilized Abstraction
## 523 AfterInjectActivity Unutilized Abstraction
## 524 AfterInjectActivity Deficient Encapsulation
## 525 AfterInjectActivity Deficient Encapsulation
## 526 AfterInjectBean Deficient Encapsulation
## 527 AfterInjectBean Deficient Encapsulation
## 528 AfterViewsActivity Unutilized Abstraction
## 529 AfterViewsActivity Unutilized Abstraction
## 530 AfterViewsActivity Deficient Encapsulation
## 531 AfterViewsActivity Deficient Encapsulation
## 532 BeanInjectedActivity Unnecessary Abstraction
## 533 BeanInjectedActivity Unnecessary Abstraction
## 534 BeanInjectedActivity Unutilized Abstraction
## 535 BeanInjectedActivity Unutilized Abstraction
## 536 BeanInjectedActivity Deficient Encapsulation
## 537 BeanInjectedActivity Deficient Encapsulation
## 538 SomeBean Unnecessary Abstraction
## 539 SomeBean Unnecessary Abstraction
## 540 SomeBean Deficient Encapsulation
## 541 SomeBean Deficient Encapsulation
## 542 SomeSingleton Unnecessary Abstraction
## 543 SomeSingleton Unnecessary Abstraction
## 544 SomeSingleton Deficient Encapsulation
## 545 SomeSingleton Deficient Encapsulation
## 546 MyFragmentActivity Unnecessary Abstraction
## 547 MyFragmentActivity Unnecessary Abstraction
## 548 MyFragmentActivity Unutilized Abstraction
## 549 MyFragmentActivity Unutilized Abstraction
## 550 MyFragmentActivity Deficient Encapsulation
## 551 MyFragmentActivity Deficient Encapsulation
## 552 MyFragmentActivity Broken Modularization
## 553 MyFragmentActivity Broken Modularization
## 554 MyListFragment Unutilized Abstraction
## 555 MyListFragment Unutilized Abstraction
## 556 MySupportFragmentActivity Unnecessary Abstraction
## 557 MySupportFragmentActivity Unnecessary Abstraction
## 558 MySupportFragmentActivity Unutilized Abstraction
## 559 MySupportFragmentActivity Unutilized Abstraction
## 560 MySupportFragmentActivity Deficient Encapsulation
## 561 MySupportFragmentActivity Deficient Encapsulation
## 562 MySupportFragmentActivity Broken Modularization
## 563 MySupportFragmentActivity Broken Modularization
## 564 CustomButton Deficient Encapsulation
## 565 CustomButton Deficient Encapsulation
## 566 SaveInstanceStateActivity Broken Modularization
## 567 SaveInstanceStateActivity Broken Modularization
## 568 NonConfigurationActivity Unnecessary Abstraction
## 569 NonConfigurationActivity Unnecessary Abstraction
## 570 NonConfigurationActivity Unutilized Abstraction
## 571 NonConfigurationActivity Unutilized Abstraction
## 572 OrmLiteActivity Unnecessary Abstraction
## 573 OrmLiteActivity Unnecessary Abstraction
## 574 OrmLiteActivity Unutilized Abstraction
## 575 OrmLiteActivity Unutilized Abstraction
## 576 PrefsActivity Unutilized Abstraction
## 577 PrefsActivity Unutilized Abstraction
## 578 PrefsActivity Broken Modularization
## 579 PrefsActivity Broken Modularization
## 580 ResActivity Unutilized Abstraction
## 581 ResActivity Unutilized Abstraction
## 582 ResActivity Broken Modularization
## 583 ResActivity Broken Modularization
## 584 MyService Insufficient Modularization
## 585 MyService Insufficient Modularization
## 586 RobolectricSampleModule Unutilized Abstraction
## 587 RobolectricSampleModule Unutilized Abstraction
## 588 MySherlockActivity Unutilized Abstraction
## 589 MySherlockActivity Unutilized Abstraction
## 590 AndroidManifestFinder Feature Envy
## 591 AndroidManifestFinder Feature Envy
## 592 Formatter Cyclically-dependent Modularization
## 593 Formatter Cyclically-dependent Modularization
## 594 Formatter Cyclically-dependent Modularization
## 595 Formatter Cyclically-dependent Modularization
## 596 Formatter Cyclically-dependent Modularization
## 597 Formatter Cyclically-dependent Modularization
## 598 Formatter Cyclically-dependent Modularization
## 599 Formatter Cyclically-dependent Modularization
## 600 Formatter Cyclically-dependent Modularization
## 601 Formatter Cyclically-dependent Modularization
## 602 Formatter Cyclically-dependent Modularization
## 603 Formatter Cyclically-dependent Modularization
## 604 Formatter Cyclically-dependent Modularization
## 605 Formatter Cyclically-dependent Modularization
## 606 Logger Cyclically-dependent Modularization
## 607 Logger Cyclically-dependent Modularization
## 608 Logger Cyclically-dependent Modularization
## 609 Logger Cyclically-dependent Modularization
## 610 Logger Cyclically-dependent Modularization
## 611 Logger Cyclically-dependent Modularization
## 612 Logger Cyclically-dependent Modularization
## 613 Logger Cyclically-dependent Modularization
## 614 Logger Cyclically-dependent Modularization
## 615 Logger Cyclically-dependent Modularization
## 616 Logger Cyclically-dependent Modularization
## 617 Logger Cyclically-dependent Modularization
## 618 Logger Cyclically-dependent Modularization
## 619 Logger Cyclically-dependent Modularization
## 620 AbstractActivity Unnecessary Abstraction
## 621 AbstractActivity Unnecessary Abstraction
## 622 ApplicationInjectedActivity Unnecessary Abstraction
## 623 ApplicationInjectedActivity Unnecessary Abstraction
## 624 ApplicationInjectedActivity Unutilized Abstraction
## 625 ApplicationInjectedActivity Unutilized Abstraction
## 626 AwaitingResultFragment Unutilized Abstraction
## 627 AwaitingResultFragment Unutilized Abstraction
## 628 BackpressedActivity Unutilized Abstraction
## 629 BackpressedActivity Unutilized Abstraction
## 630 CheckedChangeHandledActivity Unutilized Abstraction
## 631 CheckedChangeHandledActivity Unutilized Abstraction
## 632 CheckedChangeHandledActivity Broken Hierarchy
## 633 CheckedChangeHandledActivity Broken Hierarchy
## 634 ClicksHandledActivity Unutilized Abstraction
## 635 ClicksHandledActivity Unutilized Abstraction
## 636 ClicksHandledActivity Broken Hierarchy
## 637 ClicksHandledActivity Broken Hierarchy
## 638 EmptyActivityWithLayout Unnecessary Abstraction
## 639 EmptyActivityWithLayout Unnecessary Abstraction
## 640 EmptyActivityWithLayout Unutilized Abstraction
## 641 EmptyActivityWithLayout Unutilized Abstraction
## 642 FocusChangeHandledActivity Unutilized Abstraction
## 643 FocusChangeHandledActivity Unutilized Abstraction
## 644 FocusChangeHandledActivity Broken Hierarchy
## 645 FocusChangeHandledActivity Broken Hierarchy
## 646 FromHtmlActivity Unnecessary Abstraction
## 647 FromHtmlActivity Unnecessary Abstraction
## 648 FromHtmlActivity Unutilized Abstraction
## 649 FromHtmlActivity Unutilized Abstraction
## 650 ItemClicksHandledActivity Unutilized Abstraction
## 651 ItemClicksHandledActivity Unutilized Abstraction
## 652 LongClicksHandledActivity Unutilized Abstraction
## 653 LongClicksHandledActivity Unutilized Abstraction
## 654 LongClicksHandledActivity Broken Hierarchy
## 655 LongClicksHandledActivity Broken Hierarchy
## 656 SeekBarChangeListenedActivity Unutilized Abstraction
## 657 SeekBarChangeListenedActivity Unutilized Abstraction
## 658 SSLConnection Unnecessary Abstraction
## 659 SSLConnection Unnecessary Abstraction
## 660 SSLConnection Unutilized Abstraction
## 661 SSLConnection Unutilized Abstraction
## 662 TextWatchedActivity Unutilized Abstraction
## 663 TextWatchedActivity Unutilized Abstraction
## 664 TouchesHandledActivity Unutilized Abstraction
## 665 TouchesHandledActivity Unutilized Abstraction
## 666 TouchesHandledActivity Broken Hierarchy
## 667 TouchesHandledActivity Broken Hierarchy
## 668 TransactionalActivity Unutilized Abstraction
## 669 TransactionalActivity Unutilized Abstraction
## 670 ViewsInjectedActivity Unutilized Abstraction
## 671 ViewsInjectedActivity Unutilized Abstraction
## 672 AfterInjectActivity Unutilized Abstraction
## 673 AfterInjectActivity Unutilized Abstraction
## 674 AfterInjectActivity Deficient Encapsulation
## 675 AfterInjectActivity Deficient Encapsulation
## 676 AfterInjectBean Deficient Encapsulation
## 677 AfterInjectBean Deficient Encapsulation
## 678 AfterViewsActivity Unutilized Abstraction
## 679 AfterViewsActivity Unutilized Abstraction
## 680 AfterViewsActivity Deficient Encapsulation
## 681 AfterViewsActivity Deficient Encapsulation
## 682 BeanInjectedActivity Unnecessary Abstraction
## 683 BeanInjectedActivity Unnecessary Abstraction
## 684 BeanInjectedActivity Unutilized Abstraction
## 685 BeanInjectedActivity Unutilized Abstraction
## 686 BeanInjectedActivity Deficient Encapsulation
## 687 BeanInjectedActivity Deficient Encapsulation
## 688 SomeBean Unnecessary Abstraction
## 689 SomeBean Unnecessary Abstraction
## 690 SomeBean Deficient Encapsulation
## 691 SomeBean Deficient Encapsulation
## 692 SomeSingleton Unnecessary Abstraction
## 693 SomeSingleton Unnecessary Abstraction
## 694 SomeSingleton Deficient Encapsulation
## 695 SomeSingleton Deficient Encapsulation
## 696 MyFragmentActivity Unnecessary Abstraction
## 697 MyFragmentActivity Unnecessary Abstraction
## 698 MyFragmentActivity Unutilized Abstraction
## 699 MyFragmentActivity Unutilized Abstraction
## 700 MyFragmentActivity Deficient Encapsulation
## 701 MyFragmentActivity Deficient Encapsulation
## 702 MyFragmentActivity Broken Modularization
## 703 MyFragmentActivity Broken Modularization
## 704 MyListFragment Unutilized Abstraction
## 705 MyListFragment Unutilized Abstraction
## 706 MySupportFragmentActivity Unnecessary Abstraction
## 707 MySupportFragmentActivity Unnecessary Abstraction
## 708 MySupportFragmentActivity Unutilized Abstraction
## 709 MySupportFragmentActivity Unutilized Abstraction
## 710 MySupportFragmentActivity Deficient Encapsulation
## 711 MySupportFragmentActivity Deficient Encapsulation
## 712 MySupportFragmentActivity Broken Modularization
## 713 MySupportFragmentActivity Broken Modularization
## 714 CustomButton Deficient Encapsulation
## 715 CustomButton Deficient Encapsulation
## 716 SaveInstanceStateActivity Broken Modularization
## 717 SaveInstanceStateActivity Broken Modularization
## 718 NonConfigurationActivity Unnecessary Abstraction
## 719 NonConfigurationActivity Unnecessary Abstraction
## 720 NonConfigurationActivity Unutilized Abstraction
## 721 NonConfigurationActivity Unutilized Abstraction
## 722 OrmLiteActivity Unnecessary Abstraction
## 723 OrmLiteActivity Unnecessary Abstraction
## 724 OrmLiteActivity Unutilized Abstraction
## 725 OrmLiteActivity Unutilized Abstraction
## 726 PrefsActivity Unutilized Abstraction
## 727 PrefsActivity Unutilized Abstraction
## 728 PrefsActivity Broken Modularization
## 729 PrefsActivity Broken Modularization
## 730 ResActivity Unutilized Abstraction
## 731 ResActivity Unutilized Abstraction
## 732 ResActivity Broken Modularization
## 733 ResActivity Broken Modularization
## 734 MyService Insufficient Modularization
## 735 MyService Insufficient Modularization
## 736 RobolectricSampleModule Unutilized Abstraction
## 737 RobolectricSampleModule Unutilized Abstraction
## 738 MySherlockActivity Unutilized Abstraction
## 739 MySherlockActivity Unutilized Abstraction
## 740 AndroidManifestFinder Feature Envy
## 741 AndroidManifestFinder Feature Envy
## 742 ValidatorParameterHelper Insufficient Modularization
## 743 ValidatorParameterHelper Insufficient Modularization
## 744 ValidatorParameterHelper Insufficient Modularization
## 745 ValidatorParameterHelper Insufficient Modularization
## 746 ValidatorParameterHelper Insufficient Modularization
## 747 ValidatorParameterHelper Insufficient Modularization
## 748 ValidatorParameterHelper Insufficient Modularization
## 749 ValidatorParameterHelper Insufficient Modularization
## 750 ValidatorParameterHelper Insufficient Modularization
## 751 ValidatorParameterHelper Insufficient Modularization
## 752 ValidatorParameterHelper Insufficient Modularization
## 753 ValidatorParameterHelper Insufficient Modularization
## 754 Formatter Cyclically-dependent Modularization
## 755 Formatter Cyclically-dependent Modularization
## 756 Formatter Cyclically-dependent Modularization
## 757 Formatter Cyclically-dependent Modularization
## 758 Formatter Cyclically-dependent Modularization
## 759 Formatter Cyclically-dependent Modularization
## 760 Formatter Cyclically-dependent Modularization
## 761 Formatter Cyclically-dependent Modularization
## 762 Formatter Cyclically-dependent Modularization
## 763 Formatter Cyclically-dependent Modularization
## 764 Formatter Cyclically-dependent Modularization
## 765 Formatter Cyclically-dependent Modularization
## 766 Formatter Cyclically-dependent Modularization
## 767 Formatter Cyclically-dependent Modularization
## 768 Logger Cyclically-dependent Modularization
## 769 Logger Cyclically-dependent Modularization
## 770 Logger Cyclically-dependent Modularization
## 771 Logger Cyclically-dependent Modularization
## 772 Logger Cyclically-dependent Modularization
## 773 Logger Cyclically-dependent Modularization
## 774 Logger Cyclically-dependent Modularization
## 775 Logger Cyclically-dependent Modularization
## 776 Logger Cyclically-dependent Modularization
## 777 Logger Cyclically-dependent Modularization
## 778 Logger Cyclically-dependent Modularization
## 779 Logger Cyclically-dependent Modularization
## 780 Logger Cyclically-dependent Modularization
## 781 Logger Cyclically-dependent Modularization
## 782 AbstractActivity Unnecessary Abstraction
## 783 AbstractActivity Unnecessary Abstraction
## 784 ApplicationInjectedActivity Unnecessary Abstraction
## 785 ApplicationInjectedActivity Unnecessary Abstraction
## 786 ApplicationInjectedActivity Unutilized Abstraction
## 787 ApplicationInjectedActivity Unutilized Abstraction
## 788 AwaitingResultFragment Unutilized Abstraction
## 789 AwaitingResultFragment Unutilized Abstraction
## 790 BackpressedActivity Unutilized Abstraction
## 791 BackpressedActivity Unutilized Abstraction
## 792 CheckedChangeHandledActivity Unutilized Abstraction
## 793 CheckedChangeHandledActivity Unutilized Abstraction
## 794 CheckedChangeHandledActivity Broken Hierarchy
## 795 CheckedChangeHandledActivity Broken Hierarchy
## 796 ClicksHandledActivity Unutilized Abstraction
## 797 ClicksHandledActivity Unutilized Abstraction
## 798 ClicksHandledActivity Broken Hierarchy
## 799 ClicksHandledActivity Broken Hierarchy
## 800 EmptyActivityWithLayout Unnecessary Abstraction
## 801 EmptyActivityWithLayout Unnecessary Abstraction
## 802 EmptyActivityWithLayout Unutilized Abstraction
## 803 EmptyActivityWithLayout Unutilized Abstraction
## 804 FocusChangeHandledActivity Unutilized Abstraction
## 805 FocusChangeHandledActivity Unutilized Abstraction
## 806 FocusChangeHandledActivity Broken Hierarchy
## 807 FocusChangeHandledActivity Broken Hierarchy
## 808 FromHtmlActivity Unnecessary Abstraction
## 809 FromHtmlActivity Unnecessary Abstraction
## 810 FromHtmlActivity Unutilized Abstraction
## 811 FromHtmlActivity Unutilized Abstraction
## 812 ItemClicksHandledActivity Unutilized Abstraction
## 813 ItemClicksHandledActivity Unutilized Abstraction
## 814 LongClicksHandledActivity Unutilized Abstraction
## 815 LongClicksHandledActivity Unutilized Abstraction
## 816 LongClicksHandledActivity Broken Hierarchy
## 817 LongClicksHandledActivity Broken Hierarchy
## 818 SeekBarChangeListenedActivity Unutilized Abstraction
## 819 SeekBarChangeListenedActivity Unutilized Abstraction
## 820 SSLConnection Unnecessary Abstraction
## 821 SSLConnection Unnecessary Abstraction
## 822 SSLConnection Unutilized Abstraction
## 823 SSLConnection Unutilized Abstraction
## 824 TextWatchedActivity Unutilized Abstraction
## 825 TextWatchedActivity Unutilized Abstraction
## 826 TouchesHandledActivity Unutilized Abstraction
## 827 TouchesHandledActivity Unutilized Abstraction
## 828 TouchesHandledActivity Broken Hierarchy
## 829 TouchesHandledActivity Broken Hierarchy
## 830 TransactionalActivity Unutilized Abstraction
## 831 TransactionalActivity Unutilized Abstraction
## 832 ViewsInjectedActivity Unutilized Abstraction
## 833 ViewsInjectedActivity Unutilized Abstraction
## 834 AfterExtrasActivity Unutilized Abstraction
## 835 AfterExtrasActivity Unutilized Abstraction
## 836 AfterExtrasActivity Deficient Encapsulation
## 837 AfterExtrasActivity Deficient Encapsulation
## 838 AfterInjectActivity Unutilized Abstraction
## 839 AfterInjectActivity Unutilized Abstraction
## 840 AfterInjectActivity Deficient Encapsulation
## 841 AfterInjectActivity Deficient Encapsulation
## 842 AfterInjectBean Deficient Encapsulation
## 843 AfterInjectBean Deficient Encapsulation
## 844 AfterViewsActivity Unutilized Abstraction
## 845 AfterViewsActivity Unutilized Abstraction
## 846 AfterViewsActivity Deficient Encapsulation
## 847 AfterViewsActivity Deficient Encapsulation
## 848 BeanInjectedActivity Unnecessary Abstraction
## 849 BeanInjectedActivity Unnecessary Abstraction
## 850 BeanInjectedActivity Unutilized Abstraction
## 851 BeanInjectedActivity Unutilized Abstraction
## 852 BeanInjectedActivity Deficient Encapsulation
## 853 BeanInjectedActivity Deficient Encapsulation
## 854 SomeBean Unnecessary Abstraction
## 855 SomeBean Unnecessary Abstraction
## 856 SomeBean Deficient Encapsulation
## 857 SomeBean Deficient Encapsulation
## 858 SomeSingleton Unnecessary Abstraction
## 859 SomeSingleton Unnecessary Abstraction
## 860 SomeSingleton Deficient Encapsulation
## 861 SomeSingleton Deficient Encapsulation
## 862 MyFragmentActivity Unnecessary Abstraction
## 863 MyFragmentActivity Unnecessary Abstraction
## 864 MyFragmentActivity Unutilized Abstraction
## 865 MyFragmentActivity Unutilized Abstraction
## 866 MyFragmentActivity Deficient Encapsulation
## 867 MyFragmentActivity Deficient Encapsulation
## 868 MyFragmentActivity Broken Modularization
## 869 MyFragmentActivity Broken Modularization
## 870 MyListFragment Unutilized Abstraction
## 871 MyListFragment Unutilized Abstraction
## 872 MySupportFragmentActivity Unnecessary Abstraction
## 873 MySupportFragmentActivity Unnecessary Abstraction
## 874 MySupportFragmentActivity Unutilized Abstraction
## 875 MySupportFragmentActivity Unutilized Abstraction
## 876 MySupportFragmentActivity Deficient Encapsulation
## 877 MySupportFragmentActivity Deficient Encapsulation
## 878 MySupportFragmentActivity Broken Modularization
## 879 MySupportFragmentActivity Broken Modularization
## 880 CustomButton Deficient Encapsulation
## 881 CustomButton Deficient Encapsulation
## 882 SaveInstanceStateActivity Broken Modularization
## 883 SaveInstanceStateActivity Broken Modularization
## 884 NonConfigurationActivity Unnecessary Abstraction
## 885 NonConfigurationActivity Unnecessary Abstraction
## 886 NonConfigurationActivity Unutilized Abstraction
## 887 NonConfigurationActivity Unutilized Abstraction
## 888 OrmLiteActivity Unnecessary Abstraction
## 889 OrmLiteActivity Unnecessary Abstraction
## 890 OrmLiteActivity Unutilized Abstraction
## 891 OrmLiteActivity Unutilized Abstraction
## 892 PrefsActivity Unutilized Abstraction
## 893 PrefsActivity Unutilized Abstraction
## 894 PrefsActivity Broken Modularization
## 895 PrefsActivity Broken Modularization
## 896 ActivityWithReceiver Unutilized Abstraction
## 897 ActivityWithReceiver Unutilized Abstraction
## 898 FragmentWithReceiver Unutilized Abstraction
## 899 FragmentWithReceiver Unutilized Abstraction
## 900 ResActivity Unutilized Abstraction
## 901 ResActivity Unutilized Abstraction
## 902 ResActivity Broken Modularization
## 903 ResActivity Broken Modularization
## 904 MyService Insufficient Modularization
## 905 MyService Insufficient Modularization
## 906 MySherlockActivity Unutilized Abstraction
## 907 MySherlockActivity Unutilized Abstraction
## 908 TracedActivity Multifaceted Abstraction
## 909 TracedActivity Multifaceted Abstraction
## 910 TracedActivity Deficient Encapsulation
## 911 TracedActivity Deficient Encapsulation
## 912 AndroidManifestFinder Feature Envy
## 913 AndroidManifestFinder Feature Envy
## 914 ValidatorParameterHelper Insufficient Modularization
## 915 ValidatorParameterHelper Insufficient Modularization
## 916 ValidatorParameterHelper Insufficient Modularization
## 917 ValidatorParameterHelper Insufficient Modularization
## 918 ValidatorParameterHelper Insufficient Modularization
## 919 ValidatorParameterHelper Insufficient Modularization
## 920 ValidatorParameterHelper Insufficient Modularization
## 921 ValidatorParameterHelper Insufficient Modularization
## 922 ValidatorParameterHelper Insufficient Modularization
## 923 ValidatorParameterHelper Insufficient Modularization
## 924 ValidatorParameterHelper Insufficient Modularization
## 925 ValidatorParameterHelper Insufficient Modularization
## 926 Formatter Cyclically-dependent Modularization
## 927 Formatter Cyclically-dependent Modularization
## 928 Formatter Cyclically-dependent Modularization
## 929 Formatter Cyclically-dependent Modularization
## 930 Formatter Cyclically-dependent Modularization
## 931 Formatter Cyclically-dependent Modularization
## 932 Formatter Cyclically-dependent Modularization
## 933 Formatter Cyclically-dependent Modularization
## 934 Formatter Cyclically-dependent Modularization
## 935 Formatter Cyclically-dependent Modularization
## 936 Formatter Cyclically-dependent Modularization
## 937 Formatter Cyclically-dependent Modularization
## 938 Formatter Cyclically-dependent Modularization
## 939 Formatter Cyclically-dependent Modularization
## 940 Logger Cyclically-dependent Modularization
## 941 Logger Cyclically-dependent Modularization
## 942 Logger Cyclically-dependent Modularization
## 943 Logger Cyclically-dependent Modularization
## 944 Logger Cyclically-dependent Modularization
## 945 Logger Cyclically-dependent Modularization
## 946 Logger Cyclically-dependent Modularization
## 947 Logger Cyclically-dependent Modularization
## 948 Logger Cyclically-dependent Modularization
## 949 Logger Cyclically-dependent Modularization
## 950 Logger Cyclically-dependent Modularization
## 951 Logger Cyclically-dependent Modularization
## 952 Logger Cyclically-dependent Modularization
## 953 Logger Cyclically-dependent Modularization
## 954 AbstractActivity Unnecessary Abstraction
## 955 AbstractActivity Unnecessary Abstraction
## 956 ApplicationInjectedActivity Unnecessary Abstraction
## 957 ApplicationInjectedActivity Unnecessary Abstraction
## 958 ApplicationInjectedActivity Unutilized Abstraction
## 959 ApplicationInjectedActivity Unutilized Abstraction
## 960 AwaitingResultFragment Unutilized Abstraction
## 961 AwaitingResultFragment Unutilized Abstraction
## 962 BackpressedActivity Unutilized Abstraction
## 963 BackpressedActivity Unutilized Abstraction
## 964 CheckedChangeHandledActivity Unutilized Abstraction
## 965 CheckedChangeHandledActivity Unutilized Abstraction
## 966 CheckedChangeHandledActivity Broken Hierarchy
## 967 CheckedChangeHandledActivity Broken Hierarchy
## 968 ClicksHandledActivity Unutilized Abstraction
## 969 ClicksHandledActivity Unutilized Abstraction
## 970 ClicksHandledActivity Broken Hierarchy
## 971 ClicksHandledActivity Broken Hierarchy
## 972 EmptyActivityWithLayout Unnecessary Abstraction
## 973 EmptyActivityWithLayout Unnecessary Abstraction
## 974 EmptyActivityWithLayout Unutilized Abstraction
## 975 EmptyActivityWithLayout Unutilized Abstraction
## 976 FocusChangeHandledActivity Unutilized Abstraction
## 977 FocusChangeHandledActivity Unutilized Abstraction
## 978 FocusChangeHandledActivity Broken Hierarchy
## 979 FocusChangeHandledActivity Broken Hierarchy
## 980 FromHtmlActivity Unnecessary Abstraction
## 981 FromHtmlActivity Unnecessary Abstraction
## 982 FromHtmlActivity Unutilized Abstraction
## 983 FromHtmlActivity Unutilized Abstraction
## 984 ItemClicksHandledActivity Unutilized Abstraction
## 985 ItemClicksHandledActivity Unutilized Abstraction
## 986 LongClicksHandledActivity Unutilized Abstraction
## 987 LongClicksHandledActivity Unutilized Abstraction
## 988 LongClicksHandledActivity Broken Hierarchy
## 989 LongClicksHandledActivity Broken Hierarchy
## 990 SeekBarChangeListenedActivity Unutilized Abstraction
## 991 SeekBarChangeListenedActivity Unutilized Abstraction
## 992 SSLConnection Unnecessary Abstraction
## 993 SSLConnection Unnecessary Abstraction
## 994 SSLConnection Unutilized Abstraction
## 995 SSLConnection Unutilized Abstraction
## 996 TextWatchedActivity Unutilized Abstraction
## 997 TextWatchedActivity Unutilized Abstraction
## 998 TouchesHandledActivity Unutilized Abstraction
## 999 TouchesHandledActivity Unutilized Abstraction
## 1000 TouchesHandledActivity Broken Hierarchy
## 1001 TouchesHandledActivity Broken Hierarchy
## 1002 TransactionalActivity Unutilized Abstraction
## 1003 TransactionalActivity Unutilized Abstraction
## 1004 ViewsInjectedActivity Unutilized Abstraction
## 1005 ViewsInjectedActivity Unutilized Abstraction
## 1006 AfterExtrasActivity Unutilized Abstraction
## 1007 AfterExtrasActivity Unutilized Abstraction
## 1008 AfterExtrasActivity Deficient Encapsulation
## 1009 AfterExtrasActivity Deficient Encapsulation
## 1010 AfterInjectActivity Unutilized Abstraction
## 1011 AfterInjectActivity Unutilized Abstraction
## 1012 AfterInjectActivity Deficient Encapsulation
## 1013 AfterInjectActivity Deficient Encapsulation
## 1014 AfterInjectBean Deficient Encapsulation
## 1015 AfterInjectBean Deficient Encapsulation
## 1016 AfterViewsActivity Unutilized Abstraction
## 1017 AfterViewsActivity Unutilized Abstraction
## 1018 AfterViewsActivity Deficient Encapsulation
## 1019 AfterViewsActivity Deficient Encapsulation
## 1020 BeanInjectedActivity Unnecessary Abstraction
## 1021 BeanInjectedActivity Unnecessary Abstraction
## 1022 BeanInjectedActivity Unutilized Abstraction
## 1023 BeanInjectedActivity Unutilized Abstraction
## 1024 BeanInjectedActivity Deficient Encapsulation
## 1025 BeanInjectedActivity Deficient Encapsulation
## 1026 SomeBean Unnecessary Abstraction
## 1027 SomeBean Unnecessary Abstraction
## 1028 SomeBean Deficient Encapsulation
## 1029 SomeBean Deficient Encapsulation
## 1030 SomeSingleton Unnecessary Abstraction
## 1031 SomeSingleton Unnecessary Abstraction
## 1032 SomeSingleton Deficient Encapsulation
## 1033 SomeSingleton Deficient Encapsulation
## 1034 MyFragmentActivity Unnecessary Abstraction
## 1035 MyFragmentActivity Unnecessary Abstraction
## 1036 MyFragmentActivity Unutilized Abstraction
## 1037 MyFragmentActivity Unutilized Abstraction
## 1038 MyFragmentActivity Deficient Encapsulation
## 1039 MyFragmentActivity Deficient Encapsulation
## 1040 MyFragmentActivity Broken Modularization
## 1041 MyFragmentActivity Broken Modularization
## 1042 MyListFragment Unutilized Abstraction
## 1043 MyListFragment Unutilized Abstraction
## 1044 MySupportFragmentActivity Unnecessary Abstraction
## 1045 MySupportFragmentActivity Unnecessary Abstraction
## 1046 MySupportFragmentActivity Unutilized Abstraction
## 1047 MySupportFragmentActivity Unutilized Abstraction
## 1048 MySupportFragmentActivity Deficient Encapsulation
## 1049 MySupportFragmentActivity Deficient Encapsulation
## 1050 MySupportFragmentActivity Broken Modularization
## 1051 MySupportFragmentActivity Broken Modularization
## 1052 CustomButton Deficient Encapsulation
## 1053 CustomButton Deficient Encapsulation
## 1054 SaveInstanceStateActivity Broken Modularization
## 1055 SaveInstanceStateActivity Broken Modularization
## 1056 NonConfigurationActivity Unnecessary Abstraction
## 1057 NonConfigurationActivity Unnecessary Abstraction
## 1058 NonConfigurationActivity Unutilized Abstraction
## 1059 NonConfigurationActivity Unutilized Abstraction
## 1060 OrmLiteActivity Unnecessary Abstraction
## 1061 OrmLiteActivity Unnecessary Abstraction
## 1062 OrmLiteActivity Unutilized Abstraction
## 1063 OrmLiteActivity Unutilized Abstraction
## 1064 PrefsActivity Unutilized Abstraction
## 1065 PrefsActivity Unutilized Abstraction
## 1066 PrefsActivity Broken Modularization
## 1067 PrefsActivity Broken Modularization
## 1068 ActivityWithReceiver Unutilized Abstraction
## 1069 ActivityWithReceiver Unutilized Abstraction
## 1070 FragmentWithReceiver Unutilized Abstraction
## 1071 FragmentWithReceiver Unutilized Abstraction
## 1072 ResActivity Unutilized Abstraction
## 1073 ResActivity Unutilized Abstraction
## 1074 ResActivity Broken Modularization
## 1075 ResActivity Broken Modularization
## 1076 MyService Insufficient Modularization
## 1077 MyService Insufficient Modularization
## 1078 MySherlockActivity Unutilized Abstraction
## 1079 MySherlockActivity Unutilized Abstraction
## 1080 TracedActivity Multifaceted Abstraction
## 1081 TracedActivity Multifaceted Abstraction
## 1082 TracedActivity Deficient Encapsulation
## 1083 TracedActivity Deficient Encapsulation
## 1084 AndroidManifestFinder Feature Envy
## 1085 AndroidManifestFinder Feature Envy
## 1086 ValidatorParameterHelper Insufficient Modularization
## 1087 ValidatorParameterHelper Insufficient Modularization
## 1088 ValidatorParameterHelper Insufficient Modularization
## 1089 ValidatorParameterHelper Insufficient Modularization
## 1090 ValidatorParameterHelper Insufficient Modularization
## 1091 ValidatorParameterHelper Insufficient Modularization
## 1092 ValidatorParameterHelper Insufficient Modularization
## 1093 ValidatorParameterHelper Insufficient Modularization
## 1094 ValidatorParameterHelper Insufficient Modularization
## 1095 ValidatorParameterHelper Insufficient Modularization
## 1096 ValidatorParameterHelper Insufficient Modularization
## 1097 ValidatorParameterHelper Insufficient Modularization
## 1098 Formatter Cyclically-dependent Modularization
## 1099 Formatter Cyclically-dependent Modularization
## 1100 Formatter Cyclically-dependent Modularization
## 1101 Formatter Cyclically-dependent Modularization
## 1102 Formatter Cyclically-dependent Modularization
## 1103 Formatter Cyclically-dependent Modularization
## 1104 Formatter Cyclically-dependent Modularization
## 1105 Formatter Cyclically-dependent Modularization
## 1106 Formatter Cyclically-dependent Modularization
## 1107 Formatter Cyclically-dependent Modularization
## 1108 Formatter Cyclically-dependent Modularization
## 1109 Formatter Cyclically-dependent Modularization
## 1110 Formatter Cyclically-dependent Modularization
## 1111 Formatter Cyclically-dependent Modularization
## 1112 Logger Cyclically-dependent Modularization
## 1113 Logger Cyclically-dependent Modularization
## 1114 Logger Cyclically-dependent Modularization
## 1115 Logger Cyclically-dependent Modularization
## 1116 Logger Cyclically-dependent Modularization
## 1117 Logger Cyclically-dependent Modularization
## 1118 Logger Cyclically-dependent Modularization
## 1119 Logger Cyclically-dependent Modularization
## 1120 Logger Cyclically-dependent Modularization
## 1121 Logger Cyclically-dependent Modularization
## 1122 Logger Cyclically-dependent Modularization
## 1123 Logger Cyclically-dependent Modularization
## 1124 Logger Cyclically-dependent Modularization
## 1125 Logger Cyclically-dependent Modularization
## 1126 AbstractActivity Unnecessary Abstraction
## 1127 AbstractActivity Unnecessary Abstraction
## 1128 ApplicationInjectedActivity Unnecessary Abstraction
## 1129 ApplicationInjectedActivity Unnecessary Abstraction
## 1130 ApplicationInjectedActivity Unutilized Abstraction
## 1131 ApplicationInjectedActivity Unutilized Abstraction
## 1132 AwaitingResultFragment Unutilized Abstraction
## 1133 AwaitingResultFragment Unutilized Abstraction
## 1134 BackpressedActivity Unutilized Abstraction
## 1135 BackpressedActivity Unutilized Abstraction
## 1136 CheckedChangeHandledActivity Unutilized Abstraction
## 1137 CheckedChangeHandledActivity Unutilized Abstraction
## 1138 CheckedChangeHandledActivity Broken Hierarchy
## 1139 CheckedChangeHandledActivity Broken Hierarchy
## 1140 ClicksHandledActivity Unutilized Abstraction
## 1141 ClicksHandledActivity Unutilized Abstraction
## 1142 ClicksHandledActivity Broken Hierarchy
## 1143 ClicksHandledActivity Broken Hierarchy
## 1144 EmptyActivityWithLayout Unnecessary Abstraction
## 1145 EmptyActivityWithLayout Unnecessary Abstraction
## 1146 EmptyActivityWithLayout Unutilized Abstraction
## 1147 EmptyActivityWithLayout Unutilized Abstraction
## 1148 FocusChangeHandledActivity Unutilized Abstraction
## 1149 FocusChangeHandledActivity Unutilized Abstraction
## 1150 FocusChangeHandledActivity Broken Hierarchy
## 1151 FocusChangeHandledActivity Broken Hierarchy
## 1152 FromHtmlActivity Unnecessary Abstraction
## 1153 FromHtmlActivity Unnecessary Abstraction
## 1154 FromHtmlActivity Unutilized Abstraction
## 1155 FromHtmlActivity Unutilized Abstraction
## 1156 ItemClicksHandledActivity Unutilized Abstraction
## 1157 ItemClicksHandledActivity Unutilized Abstraction
## 1158 LongClicksHandledActivity Unutilized Abstraction
## 1159 LongClicksHandledActivity Unutilized Abstraction
## 1160 LongClicksHandledActivity Broken Hierarchy
## 1161 LongClicksHandledActivity Broken Hierarchy
## 1162 SeekBarChangeListenedActivity Unutilized Abstraction
## 1163 SeekBarChangeListenedActivity Unutilized Abstraction
## 1164 SSLConnection Unnecessary Abstraction
## 1165 SSLConnection Unnecessary Abstraction
## 1166 SSLConnection Unutilized Abstraction
## 1167 SSLConnection Unutilized Abstraction
## 1168 TextWatchedActivity Unutilized Abstraction
## 1169 TextWatchedActivity Unutilized Abstraction
## 1170 TouchesHandledActivity Unutilized Abstraction
## 1171 TouchesHandledActivity Unutilized Abstraction
## 1172 TouchesHandledActivity Broken Hierarchy
## 1173 TouchesHandledActivity Broken Hierarchy
## 1174 TransactionalActivity Unutilized Abstraction
## 1175 TransactionalActivity Unutilized Abstraction
## 1176 ViewsInjectedActivity Unutilized Abstraction
## 1177 ViewsInjectedActivity Unutilized Abstraction
## 1178 AfterExtrasActivity Unutilized Abstraction
## 1179 AfterExtrasActivity Unutilized Abstraction
## 1180 AfterExtrasActivity Deficient Encapsulation
## 1181 AfterExtrasActivity Deficient Encapsulation
## 1182 AfterInjectActivity Unutilized Abstraction
## 1183 AfterInjectActivity Unutilized Abstraction
## 1184 AfterInjectActivity Deficient Encapsulation
## 1185 AfterInjectActivity Deficient Encapsulation
## 1186 AfterInjectBean Deficient Encapsulation
## 1187 AfterInjectBean Deficient Encapsulation
## 1188 AfterViewsActivity Unutilized Abstraction
## 1189 AfterViewsActivity Unutilized Abstraction
## 1190 AfterViewsActivity Deficient Encapsulation
## 1191 AfterViewsActivity Deficient Encapsulation
## 1192 BeanInjectedActivity Unnecessary Abstraction
## 1193 BeanInjectedActivity Unnecessary Abstraction
## 1194 BeanInjectedActivity Unutilized Abstraction
## 1195 BeanInjectedActivity Unutilized Abstraction
## 1196 BeanInjectedActivity Deficient Encapsulation
## 1197 BeanInjectedActivity Deficient Encapsulation
## 1198 SomeBean Unnecessary Abstraction
## 1199 SomeBean Unnecessary Abstraction
## 1200 SomeBean Deficient Encapsulation
## 1201 SomeBean Deficient Encapsulation
## 1202 SomeSingleton Unnecessary Abstraction
## 1203 SomeSingleton Unnecessary Abstraction
## 1204 SomeSingleton Deficient Encapsulation
## 1205 SomeSingleton Deficient Encapsulation
## 1206 MyFragmentActivity Unnecessary Abstraction
## 1207 MyFragmentActivity Unnecessary Abstraction
## 1208 MyFragmentActivity Unutilized Abstraction
## 1209 MyFragmentActivity Unutilized Abstraction
## 1210 MyFragmentActivity Deficient Encapsulation
## 1211 MyFragmentActivity Deficient Encapsulation
## 1212 MyFragmentActivity Broken Modularization
## 1213 MyFragmentActivity Broken Modularization
## 1214 MyListFragment Unutilized Abstraction
## 1215 MyListFragment Unutilized Abstraction
## 1216 MySupportFragmentActivity Unnecessary Abstraction
## 1217 MySupportFragmentActivity Unnecessary Abstraction
## 1218 MySupportFragmentActivity Unutilized Abstraction
## 1219 MySupportFragmentActivity Unutilized Abstraction
## 1220 MySupportFragmentActivity Deficient Encapsulation
## 1221 MySupportFragmentActivity Deficient Encapsulation
## 1222 MySupportFragmentActivity Broken Modularization
## 1223 MySupportFragmentActivity Broken Modularization
## 1224 ReceiverWithActions Deficient Encapsulation
## 1225 ReceiverWithActions Deficient Encapsulation
## 1226 CustomButton Deficient Encapsulation
## 1227 CustomButton Deficient Encapsulation
## 1228 SaveInstanceStateActivity Broken Modularization
## 1229 SaveInstanceStateActivity Broken Modularization
## 1230 NonConfigurationActivity Unnecessary Abstraction
## 1231 NonConfigurationActivity Unnecessary Abstraction
## 1232 NonConfigurationActivity Unutilized Abstraction
## 1233 NonConfigurationActivity Unutilized Abstraction
## 1234 OrmLiteActivity Unnecessary Abstraction
## 1235 OrmLiteActivity Unnecessary Abstraction
## 1236 OrmLiteActivity Unutilized Abstraction
## 1237 OrmLiteActivity Unutilized Abstraction
## 1238 PrefsActivity Unutilized Abstraction
## 1239 PrefsActivity Unutilized Abstraction
## 1240 PrefsActivity Broken Modularization
## 1241 PrefsActivity Broken Modularization
## 1242 ActivityWithReceiver Unutilized Abstraction
## 1243 ActivityWithReceiver Unutilized Abstraction
## 1244 ActivityWithReceiver Deficient Encapsulation
## 1245 ActivityWithReceiver Deficient Encapsulation
## 1246 FragmentWithReceiver Unutilized Abstraction
## 1247 FragmentWithReceiver Unutilized Abstraction
## 1248 ResActivity Unutilized Abstraction
## 1249 ResActivity Unutilized Abstraction
## 1250 ResActivity Broken Modularization
## 1251 ResActivity Broken Modularization
## 1252 MyService Insufficient Modularization
## 1253 MyService Insufficient Modularization
## 1254 MySherlockActivity Unutilized Abstraction
## 1255 MySherlockActivity Unutilized Abstraction
## 1256 TracedActivity Multifaceted Abstraction
## 1257 TracedActivity Multifaceted Abstraction
## 1258 TracedActivity Deficient Encapsulation
## 1259 TracedActivity Deficient Encapsulation
## 1260 AndroidManifestFinder Feature Envy
## 1261 AndroidManifestFinder Feature Envy
## 1262 ValidatorParameterHelper Insufficient Modularization
## 1263 ValidatorParameterHelper Insufficient Modularization
## 1264 ValidatorParameterHelper Insufficient Modularization
## 1265 ValidatorParameterHelper Insufficient Modularization
## 1266 ValidatorParameterHelper Insufficient Modularization
## 1267 ValidatorParameterHelper Insufficient Modularization
## 1268 ValidatorParameterHelper Insufficient Modularization
## 1269 ValidatorParameterHelper Insufficient Modularization
## 1270 ValidatorParameterHelper Insufficient Modularization
## 1271 ValidatorParameterHelper Insufficient Modularization
## 1272 ValidatorParameterHelper Insufficient Modularization
## 1273 ValidatorParameterHelper Insufficient Modularization
## 1274 Formatter Cyclically-dependent Modularization
## 1275 Formatter Cyclically-dependent Modularization
## 1276 Formatter Cyclically-dependent Modularization
## 1277 Formatter Cyclically-dependent Modularization
## 1278 Formatter Cyclically-dependent Modularization
## 1279 Formatter Cyclically-dependent Modularization
## 1280 Formatter Cyclically-dependent Modularization
## 1281 Formatter Cyclically-dependent Modularization
## 1282 Formatter Cyclically-dependent Modularization
## 1283 Formatter Cyclically-dependent Modularization
## 1284 Formatter Cyclically-dependent Modularization
## 1285 Formatter Cyclically-dependent Modularization
## 1286 Formatter Cyclically-dependent Modularization
## 1287 Formatter Cyclically-dependent Modularization
## 1288 Logger Cyclically-dependent Modularization
## 1289 Logger Cyclically-dependent Modularization
## 1290 Logger Cyclically-dependent Modularization
## 1291 Logger Cyclically-dependent Modularization
## 1292 Logger Cyclically-dependent Modularization
## 1293 Logger Cyclically-dependent Modularization
## 1294 Logger Cyclically-dependent Modularization
## 1295 Logger Cyclically-dependent Modularization
## 1296 Logger Cyclically-dependent Modularization
## 1297 Logger Cyclically-dependent Modularization
## 1298 Logger Cyclically-dependent Modularization
## 1299 Logger Cyclically-dependent Modularization
## 1300 Logger Cyclically-dependent Modularization
## 1301 Logger Cyclically-dependent Modularization
## 1302 AbstractActivity Unnecessary Abstraction
## 1303 AbstractActivity Unnecessary Abstraction
## 1304 ApplicationInjectedActivity Unnecessary Abstraction
## 1305 ApplicationInjectedActivity Unnecessary Abstraction
## 1306 ApplicationInjectedActivity Unutilized Abstraction
## 1307 ApplicationInjectedActivity Unutilized Abstraction
## 1308 CheckedChangeHandledActivity Unutilized Abstraction
## 1309 CheckedChangeHandledActivity Unutilized Abstraction
## 1310 CheckedChangeHandledActivity Broken Hierarchy
## 1311 CheckedChangeHandledActivity Broken Hierarchy
## 1312 ClicksHandledActivity Unutilized Abstraction
## 1313 ClicksHandledActivity Unutilized Abstraction
## 1314 ClicksHandledActivity Broken Hierarchy
## 1315 ClicksHandledActivity Broken Hierarchy
## 1316 EmptyActivityWithLayout Unnecessary Abstraction
## 1317 EmptyActivityWithLayout Unnecessary Abstraction
## 1318 EmptyActivityWithLayout Unutilized Abstraction
## 1319 EmptyActivityWithLayout Unutilized Abstraction
## 1320 FocusChangeHandledActivity Unutilized Abstraction
## 1321 FocusChangeHandledActivity Unutilized Abstraction
## 1322 FocusChangeHandledActivity Broken Hierarchy
## 1323 FocusChangeHandledActivity Broken Hierarchy
## 1324 FromHtmlActivity Unnecessary Abstraction
## 1325 FromHtmlActivity Unnecessary Abstraction
## 1326 FromHtmlActivity Unutilized Abstraction
## 1327 FromHtmlActivity Unutilized Abstraction
## 1328 ItemClicksHandledActivity Unutilized Abstraction
## 1329 ItemClicksHandledActivity Unutilized Abstraction
## 1330 LongClicksHandledActivity Unutilized Abstraction
## 1331 LongClicksHandledActivity Unutilized Abstraction
## 1332 LongClicksHandledActivity Broken Hierarchy
## 1333 LongClicksHandledActivity Broken Hierarchy
## 1334 SeekBarChangeListenedActivity Unutilized Abstraction
## 1335 SeekBarChangeListenedActivity Unutilized Abstraction
## 1336 SSLConnection Unnecessary Abstraction
## 1337 SSLConnection Unnecessary Abstraction
## 1338 SSLConnection Unutilized Abstraction
## 1339 SSLConnection Unutilized Abstraction
## 1340 TextWatchedActivity Multifaceted Abstraction
## 1341 TextWatchedActivity Multifaceted Abstraction
## 1342 TextWatchedActivity Unutilized Abstraction
## 1343 TextWatchedActivity Unutilized Abstraction
## 1344 TouchesHandledActivity Unutilized Abstraction
## 1345 TouchesHandledActivity Unutilized Abstraction
## 1346 TouchesHandledActivity Broken Hierarchy
## 1347 TouchesHandledActivity Broken Hierarchy
## 1348 TransactionalActivity Unutilized Abstraction
## 1349 TransactionalActivity Unutilized Abstraction
## 1350 ViewsInjectedActivity Unutilized Abstraction
## 1351 ViewsInjectedActivity Unutilized Abstraction
## 1352 AfterExtrasActivity Unutilized Abstraction
## 1353 AfterExtrasActivity Unutilized Abstraction
## 1354 AfterExtrasActivity Deficient Encapsulation
## 1355 AfterExtrasActivity Deficient Encapsulation
## 1356 AfterInjectActivity Unutilized Abstraction
## 1357 AfterInjectActivity Unutilized Abstraction
## 1358 AfterInjectActivity Deficient Encapsulation
## 1359 AfterInjectActivity Deficient Encapsulation
## 1360 AfterInjectBean Deficient Encapsulation
## 1361 AfterInjectBean Deficient Encapsulation
## 1362 AfterViewsActivity Unutilized Abstraction
## 1363 AfterViewsActivity Unutilized Abstraction
## 1364 AfterViewsActivity Deficient Encapsulation
## 1365 AfterViewsActivity Deficient Encapsulation
## 1366 BeanInjectedActivity Unnecessary Abstraction
## 1367 BeanInjectedActivity Unnecessary Abstraction
## 1368 BeanInjectedActivity Unutilized Abstraction
## 1369 BeanInjectedActivity Unutilized Abstraction
## 1370 BeanInjectedActivity Deficient Encapsulation
## 1371 BeanInjectedActivity Deficient Encapsulation
## 1372 SomeBean Unnecessary Abstraction
## 1373 SomeBean Unnecessary Abstraction
## 1374 SomeBean Deficient Encapsulation
## 1375 SomeBean Deficient Encapsulation
## 1376 SomeSingleton Unnecessary Abstraction
## 1377 SomeSingleton Unnecessary Abstraction
## 1378 SomeSingleton Deficient Encapsulation
## 1379 SomeSingleton Deficient Encapsulation
## 1380 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1381 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1382 MyFragmentActivity Unnecessary Abstraction
## 1383 MyFragmentActivity Unnecessary Abstraction
## 1384 MyFragmentActivity Unutilized Abstraction
## 1385 MyFragmentActivity Unutilized Abstraction
## 1386 MyFragmentActivity Deficient Encapsulation
## 1387 MyFragmentActivity Deficient Encapsulation
## 1388 MyFragmentActivity Broken Modularization
## 1389 MyFragmentActivity Broken Modularization
## 1390 MyListFragment Unutilized Abstraction
## 1391 MyListFragment Unutilized Abstraction
## 1392 MySupportFragmentActivity Unnecessary Abstraction
## 1393 MySupportFragmentActivity Unnecessary Abstraction
## 1394 MySupportFragmentActivity Unutilized Abstraction
## 1395 MySupportFragmentActivity Unutilized Abstraction
## 1396 MySupportFragmentActivity Deficient Encapsulation
## 1397 MySupportFragmentActivity Deficient Encapsulation
## 1398 MySupportFragmentActivity Broken Modularization
## 1399 MySupportFragmentActivity Broken Modularization
## 1400 ReceiverWithActions Deficient Encapsulation
## 1401 ReceiverWithActions Deficient Encapsulation
## 1402 CustomButton Deficient Encapsulation
## 1403 CustomButton Deficient Encapsulation
## 1404 SaveInstanceStateActivity Broken Modularization
## 1405 SaveInstanceStateActivity Broken Modularization
## 1406 NonConfigurationActivity Unutilized Abstraction
## 1407 NonConfigurationActivity Unutilized Abstraction
## 1408 OrmLiteActivity Unnecessary Abstraction
## 1409 OrmLiteActivity Unnecessary Abstraction
## 1410 OrmLiteActivity Unutilized Abstraction
## 1411 OrmLiteActivity Unutilized Abstraction
## 1412 OrmLiteActivity Broken Modularization
## 1413 OrmLiteActivity Broken Modularization
## 1414 PreferenceEventsHandledActivity Unutilized Abstraction
## 1415 PreferenceEventsHandledActivity Unutilized Abstraction
## 1416 PreferenceScreenActivity Unnecessary Abstraction
## 1417 PreferenceScreenActivity Unnecessary Abstraction
## 1418 PreferenceScreenActivity Unutilized Abstraction
## 1419 PreferenceScreenActivity Unutilized Abstraction
## 1420 PrefsActivity Unutilized Abstraction
## 1421 PrefsActivity Unutilized Abstraction
## 1422 PrefsActivity Broken Modularization
## 1423 PrefsActivity Broken Modularization
## 1424 ActivityWithReceiver Unutilized Abstraction
## 1425 ActivityWithReceiver Unutilized Abstraction
## 1426 ActivityWithReceiver Deficient Encapsulation
## 1427 ActivityWithReceiver Deficient Encapsulation
## 1428 FragmentWithReceiver Deficient Encapsulation
## 1429 FragmentWithReceiver Deficient Encapsulation
## 1430 ResActivity Unutilized Abstraction
## 1431 ResActivity Unutilized Abstraction
## 1432 ResActivity Broken Modularization
## 1433 ResActivity Broken Modularization
## 1434 MyService Insufficient Modularization
## 1435 MyService Insufficient Modularization
## 1436 MySherlockActivity Unutilized Abstraction
## 1437 MySherlockActivity Unutilized Abstraction
## 1438 TracedActivity Multifaceted Abstraction
## 1439 TracedActivity Multifaceted Abstraction
## 1440 TracedActivity Deficient Encapsulation
## 1441 TracedActivity Deficient Encapsulation
## 1442 AndroidManifestFinder Feature Envy
## 1443 AndroidManifestFinder Feature Envy
## 1444 ValidatorParameterHelper Insufficient Modularization
## 1445 ValidatorParameterHelper Insufficient Modularization
## 1446 ValidatorParameterHelper Insufficient Modularization
## 1447 ValidatorParameterHelper Insufficient Modularization
## 1448 ValidatorParameterHelper Insufficient Modularization
## 1449 ValidatorParameterHelper Insufficient Modularization
## 1450 ValidatorParameterHelper Insufficient Modularization
## 1451 ValidatorParameterHelper Insufficient Modularization
## 1452 ValidatorParameterHelper Insufficient Modularization
## 1453 ValidatorParameterHelper Insufficient Modularization
## 1454 ValidatorParameterHelper Insufficient Modularization
## 1455 ValidatorParameterHelper Insufficient Modularization
## 1456 Formatter Cyclically-dependent Modularization
## 1457 Formatter Cyclically-dependent Modularization
## 1458 Formatter Cyclically-dependent Modularization
## 1459 Formatter Cyclically-dependent Modularization
## 1460 Formatter Cyclically-dependent Modularization
## 1461 Formatter Cyclically-dependent Modularization
## 1462 Formatter Cyclically-dependent Modularization
## 1463 Formatter Cyclically-dependent Modularization
## 1464 Formatter Cyclically-dependent Modularization
## 1465 Formatter Cyclically-dependent Modularization
## 1466 Formatter Cyclically-dependent Modularization
## 1467 Formatter Cyclically-dependent Modularization
## 1468 Formatter Cyclically-dependent Modularization
## 1469 Formatter Cyclically-dependent Modularization
## 1470 Logger Cyclically-dependent Modularization
## 1471 Logger Cyclically-dependent Modularization
## 1472 Logger Cyclically-dependent Modularization
## 1473 Logger Cyclically-dependent Modularization
## 1474 Logger Cyclically-dependent Modularization
## 1475 Logger Cyclically-dependent Modularization
## 1476 Logger Cyclically-dependent Modularization
## 1477 Logger Cyclically-dependent Modularization
## 1478 Logger Cyclically-dependent Modularization
## 1479 Logger Cyclically-dependent Modularization
## 1480 Logger Cyclically-dependent Modularization
## 1481 Logger Cyclically-dependent Modularization
## 1482 Logger Cyclically-dependent Modularization
## 1483 Logger Cyclically-dependent Modularization
## 1484 AbstractActivity Unnecessary Abstraction
## 1485 AbstractActivity Unnecessary Abstraction
## 1486 ApplicationInjectedActivity Unnecessary Abstraction
## 1487 ApplicationInjectedActivity Unnecessary Abstraction
## 1488 ApplicationInjectedActivity Unutilized Abstraction
## 1489 ApplicationInjectedActivity Unutilized Abstraction
## 1490 CheckedChangeHandledActivity Unutilized Abstraction
## 1491 CheckedChangeHandledActivity Unutilized Abstraction
## 1492 CheckedChangeHandledActivity Broken Hierarchy
## 1493 CheckedChangeHandledActivity Broken Hierarchy
## 1494 ClicksHandledActivity Unutilized Abstraction
## 1495 ClicksHandledActivity Unutilized Abstraction
## 1496 ClicksHandledActivity Broken Hierarchy
## 1497 ClicksHandledActivity Broken Hierarchy
## 1498 EmptyActivityWithLayout Unnecessary Abstraction
## 1499 EmptyActivityWithLayout Unnecessary Abstraction
## 1500 EmptyActivityWithLayout Unutilized Abstraction
## 1501 EmptyActivityWithLayout Unutilized Abstraction
## 1502 FocusChangeHandledActivity Unutilized Abstraction
## 1503 FocusChangeHandledActivity Unutilized Abstraction
## 1504 FocusChangeHandledActivity Broken Hierarchy
## 1505 FocusChangeHandledActivity Broken Hierarchy
## 1506 FromHtmlActivity Unnecessary Abstraction
## 1507 FromHtmlActivity Unnecessary Abstraction
## 1508 FromHtmlActivity Unutilized Abstraction
## 1509 FromHtmlActivity Unutilized Abstraction
## 1510 ItemClicksHandledActivity Unutilized Abstraction
## 1511 ItemClicksHandledActivity Unutilized Abstraction
## 1512 LongClicksHandledActivity Unutilized Abstraction
## 1513 LongClicksHandledActivity Unutilized Abstraction
## 1514 LongClicksHandledActivity Broken Hierarchy
## 1515 LongClicksHandledActivity Broken Hierarchy
## 1516 SeekBarChangeListenedActivity Unutilized Abstraction
## 1517 SeekBarChangeListenedActivity Unutilized Abstraction
## 1518 SSLConnection Unnecessary Abstraction
## 1519 SSLConnection Unnecessary Abstraction
## 1520 SSLConnection Unutilized Abstraction
## 1521 SSLConnection Unutilized Abstraction
## 1522 TextWatchedActivity Multifaceted Abstraction
## 1523 TextWatchedActivity Multifaceted Abstraction
## 1524 TextWatchedActivity Unutilized Abstraction
## 1525 TextWatchedActivity Unutilized Abstraction
## 1526 TouchesHandledActivity Unutilized Abstraction
## 1527 TouchesHandledActivity Unutilized Abstraction
## 1528 TouchesHandledActivity Broken Hierarchy
## 1529 TouchesHandledActivity Broken Hierarchy
## 1530 TransactionalActivity Unutilized Abstraction
## 1531 TransactionalActivity Unutilized Abstraction
## 1532 ViewsInjectedActivity Unutilized Abstraction
## 1533 ViewsInjectedActivity Unutilized Abstraction
## 1534 AfterExtrasActivity Unutilized Abstraction
## 1535 AfterExtrasActivity Unutilized Abstraction
## 1536 AfterExtrasActivity Deficient Encapsulation
## 1537 AfterExtrasActivity Deficient Encapsulation
## 1538 AfterInjectActivity Unutilized Abstraction
## 1539 AfterInjectActivity Unutilized Abstraction
## 1540 AfterInjectActivity Deficient Encapsulation
## 1541 AfterInjectActivity Deficient Encapsulation
## 1542 AfterInjectBean Deficient Encapsulation
## 1543 AfterInjectBean Deficient Encapsulation
## 1544 AfterViewsActivity Unutilized Abstraction
## 1545 AfterViewsActivity Unutilized Abstraction
## 1546 AfterViewsActivity Deficient Encapsulation
## 1547 AfterViewsActivity Deficient Encapsulation
## 1548 BeanInjectedActivity Unnecessary Abstraction
## 1549 BeanInjectedActivity Unnecessary Abstraction
## 1550 BeanInjectedActivity Unutilized Abstraction
## 1551 BeanInjectedActivity Unutilized Abstraction
## 1552 BeanInjectedActivity Deficient Encapsulation
## 1553 BeanInjectedActivity Deficient Encapsulation
## 1554 SomeBean Unnecessary Abstraction
## 1555 SomeBean Unnecessary Abstraction
## 1556 SomeBean Deficient Encapsulation
## 1557 SomeBean Deficient Encapsulation
## 1558 SomeSingleton Unnecessary Abstraction
## 1559 SomeSingleton Unnecessary Abstraction
## 1560 SomeSingleton Deficient Encapsulation
## 1561 SomeSingleton Deficient Encapsulation
## 1562 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1563 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1564 MyFragmentActivity Unnecessary Abstraction
## 1565 MyFragmentActivity Unnecessary Abstraction
## 1566 MyFragmentActivity Unutilized Abstraction
## 1567 MyFragmentActivity Unutilized Abstraction
## 1568 MyFragmentActivity Deficient Encapsulation
## 1569 MyFragmentActivity Deficient Encapsulation
## 1570 MyFragmentActivity Broken Modularization
## 1571 MyFragmentActivity Broken Modularization
## 1572 MyListFragment Unutilized Abstraction
## 1573 MyListFragment Unutilized Abstraction
## 1574 MySupportFragmentActivity Unnecessary Abstraction
## 1575 MySupportFragmentActivity Unnecessary Abstraction
## 1576 MySupportFragmentActivity Unutilized Abstraction
## 1577 MySupportFragmentActivity Unutilized Abstraction
## 1578 MySupportFragmentActivity Deficient Encapsulation
## 1579 MySupportFragmentActivity Deficient Encapsulation
## 1580 MySupportFragmentActivity Broken Modularization
## 1581 MySupportFragmentActivity Broken Modularization
## 1582 ReceiverWithActions Deficient Encapsulation
## 1583 ReceiverWithActions Deficient Encapsulation
## 1584 CustomButton Deficient Encapsulation
## 1585 CustomButton Deficient Encapsulation
## 1586 SaveInstanceStateActivity Broken Modularization
## 1587 SaveInstanceStateActivity Broken Modularization
## 1588 NonConfigurationActivity Unutilized Abstraction
## 1589 NonConfigurationActivity Unutilized Abstraction
## 1590 OrmLiteActivity Unnecessary Abstraction
## 1591 OrmLiteActivity Unnecessary Abstraction
## 1592 OrmLiteActivity Unutilized Abstraction
## 1593 OrmLiteActivity Unutilized Abstraction
## 1594 OrmLiteActivity Broken Modularization
## 1595 OrmLiteActivity Broken Modularization
## 1596 PreferenceEventsHandledActivity Multifaceted Abstraction
## 1597 PreferenceEventsHandledActivity Multifaceted Abstraction
## 1598 PreferenceEventsHandledActivity Unutilized Abstraction
## 1599 PreferenceEventsHandledActivity Unutilized Abstraction
## 1600 PreferenceScreenActivity Unnecessary Abstraction
## 1601 PreferenceScreenActivity Unnecessary Abstraction
## 1602 PreferenceScreenActivity Unutilized Abstraction
## 1603 PreferenceScreenActivity Unutilized Abstraction
## 1604 PrefsActivity Unutilized Abstraction
## 1605 PrefsActivity Unutilized Abstraction
## 1606 PrefsActivity Broken Modularization
## 1607 PrefsActivity Broken Modularization
## 1608 ActivityWithReceiver Unutilized Abstraction
## 1609 ActivityWithReceiver Unutilized Abstraction
## 1610 ActivityWithReceiver Deficient Encapsulation
## 1611 ActivityWithReceiver Deficient Encapsulation
## 1612 FragmentWithReceiver Deficient Encapsulation
## 1613 FragmentWithReceiver Deficient Encapsulation
## 1614 ResActivity Unutilized Abstraction
## 1615 ResActivity Unutilized Abstraction
## 1616 ResActivity Broken Modularization
## 1617 ResActivity Broken Modularization
## 1618 MyService Insufficient Modularization
## 1619 MyService Insufficient Modularization
## 1620 MySherlockActivity Unutilized Abstraction
## 1621 MySherlockActivity Unutilized Abstraction
## 1622 TracedActivity Multifaceted Abstraction
## 1623 TracedActivity Multifaceted Abstraction
## 1624 TracedActivity Deficient Encapsulation
## 1625 TracedActivity Deficient Encapsulation
## 1626 AndroidManifestFinder Feature Envy
## 1627 AndroidManifestFinder Feature Envy
## 1628 ValidatorParameterHelper Insufficient Modularization
## 1629 ValidatorParameterHelper Insufficient Modularization
## 1630 ValidatorParameterHelper Insufficient Modularization
## 1631 ValidatorParameterHelper Insufficient Modularization
## 1632 ValidatorParameterHelper Insufficient Modularization
## 1633 ValidatorParameterHelper Insufficient Modularization
## 1634 ValidatorParameterHelper Insufficient Modularization
## 1635 ValidatorParameterHelper Insufficient Modularization
## 1636 ValidatorParameterHelper Insufficient Modularization
## 1637 ValidatorParameterHelper Insufficient Modularization
## 1638 ValidatorParameterHelper Insufficient Modularization
## 1639 ValidatorParameterHelper Insufficient Modularization
## 1640 Formatter Cyclically-dependent Modularization
## 1641 Formatter Cyclically-dependent Modularization
## 1642 Formatter Cyclically-dependent Modularization
## 1643 Formatter Cyclically-dependent Modularization
## 1644 Formatter Cyclically-dependent Modularization
## 1645 Formatter Cyclically-dependent Modularization
## 1646 Formatter Cyclically-dependent Modularization
## 1647 Formatter Cyclically-dependent Modularization
## 1648 Formatter Cyclically-dependent Modularization
## 1649 Formatter Cyclically-dependent Modularization
## 1650 Formatter Cyclically-dependent Modularization
## 1651 Formatter Cyclically-dependent Modularization
## 1652 Formatter Cyclically-dependent Modularization
## 1653 Formatter Cyclically-dependent Modularization
## 1654 Logger Cyclically-dependent Modularization
## 1655 Logger Cyclically-dependent Modularization
## 1656 Logger Cyclically-dependent Modularization
## 1657 Logger Cyclically-dependent Modularization
## 1658 Logger Cyclically-dependent Modularization
## 1659 Logger Cyclically-dependent Modularization
## 1660 Logger Cyclically-dependent Modularization
## 1661 Logger Cyclically-dependent Modularization
## 1662 Logger Cyclically-dependent Modularization
## 1663 Logger Cyclically-dependent Modularization
## 1664 Logger Cyclically-dependent Modularization
## 1665 Logger Cyclically-dependent Modularization
## 1666 Logger Cyclically-dependent Modularization
## 1667 Logger Cyclically-dependent Modularization
## 1668 AbstractActivity Unnecessary Abstraction
## 1669 AbstractActivity Unnecessary Abstraction
## 1670 ApplicationInjectedActivity Unnecessary Abstraction
## 1671 ApplicationInjectedActivity Unnecessary Abstraction
## 1672 ApplicationInjectedActivity Unutilized Abstraction
## 1673 ApplicationInjectedActivity Unutilized Abstraction
## 1674 CheckedChangeHandledActivity Unutilized Abstraction
## 1675 CheckedChangeHandledActivity Unutilized Abstraction
## 1676 CheckedChangeHandledActivity Broken Hierarchy
## 1677 CheckedChangeHandledActivity Broken Hierarchy
## 1678 ClicksHandledActivity Unutilized Abstraction
## 1679 ClicksHandledActivity Unutilized Abstraction
## 1680 ClicksHandledActivity Broken Hierarchy
## 1681 ClicksHandledActivity Broken Hierarchy
## 1682 EmptyActivityWithLayout Unnecessary Abstraction
## 1683 EmptyActivityWithLayout Unnecessary Abstraction
## 1684 EmptyActivityWithLayout Unutilized Abstraction
## 1685 EmptyActivityWithLayout Unutilized Abstraction
## 1686 FocusChangeHandledActivity Unutilized Abstraction
## 1687 FocusChangeHandledActivity Unutilized Abstraction
## 1688 FocusChangeHandledActivity Broken Hierarchy
## 1689 FocusChangeHandledActivity Broken Hierarchy
## 1690 FromHtmlActivity Unnecessary Abstraction
## 1691 FromHtmlActivity Unnecessary Abstraction
## 1692 FromHtmlActivity Unutilized Abstraction
## 1693 FromHtmlActivity Unutilized Abstraction
## 1694 ItemClicksHandledActivity Unutilized Abstraction
## 1695 ItemClicksHandledActivity Unutilized Abstraction
## 1696 LongClicksHandledActivity Unutilized Abstraction
## 1697 LongClicksHandledActivity Unutilized Abstraction
## 1698 LongClicksHandledActivity Broken Hierarchy
## 1699 LongClicksHandledActivity Broken Hierarchy
## 1700 SeekBarChangeListenedActivity Unutilized Abstraction
## 1701 SeekBarChangeListenedActivity Unutilized Abstraction
## 1702 SSLConnection Unnecessary Abstraction
## 1703 SSLConnection Unnecessary Abstraction
## 1704 SSLConnection Unutilized Abstraction
## 1705 SSLConnection Unutilized Abstraction
## 1706 TextWatchedActivity Multifaceted Abstraction
## 1707 TextWatchedActivity Multifaceted Abstraction
## 1708 TextWatchedActivity Unutilized Abstraction
## 1709 TextWatchedActivity Unutilized Abstraction
## 1710 TouchesHandledActivity Unutilized Abstraction
## 1711 TouchesHandledActivity Unutilized Abstraction
## 1712 TouchesHandledActivity Broken Hierarchy
## 1713 TouchesHandledActivity Broken Hierarchy
## 1714 TransactionalActivity Unutilized Abstraction
## 1715 TransactionalActivity Unutilized Abstraction
## 1716 ViewsInjectedActivity Unutilized Abstraction
## 1717 ViewsInjectedActivity Unutilized Abstraction
## 1718 AfterExtrasActivity Unutilized Abstraction
## 1719 AfterExtrasActivity Unutilized Abstraction
## 1720 AfterExtrasActivity Deficient Encapsulation
## 1721 AfterExtrasActivity Deficient Encapsulation
## 1722 AfterInjectActivity Unutilized Abstraction
## 1723 AfterInjectActivity Unutilized Abstraction
## 1724 AfterInjectActivity Deficient Encapsulation
## 1725 AfterInjectActivity Deficient Encapsulation
## 1726 AfterInjectBean Deficient Encapsulation
## 1727 AfterInjectBean Deficient Encapsulation
## 1728 AfterViewsActivity Unutilized Abstraction
## 1729 AfterViewsActivity Unutilized Abstraction
## 1730 AfterViewsActivity Deficient Encapsulation
## 1731 AfterViewsActivity Deficient Encapsulation
## 1732 BeanInjectedActivity Unnecessary Abstraction
## 1733 BeanInjectedActivity Unnecessary Abstraction
## 1734 BeanInjectedActivity Unutilized Abstraction
## 1735 BeanInjectedActivity Unutilized Abstraction
## 1736 BeanInjectedActivity Deficient Encapsulation
## 1737 BeanInjectedActivity Deficient Encapsulation
## 1738 SomeBean Unnecessary Abstraction
## 1739 SomeBean Unnecessary Abstraction
## 1740 SomeBean Deficient Encapsulation
## 1741 SomeBean Deficient Encapsulation
## 1742 SomeSingleton Unnecessary Abstraction
## 1743 SomeSingleton Unnecessary Abstraction
## 1744 SomeSingleton Deficient Encapsulation
## 1745 SomeSingleton Deficient Encapsulation
## 1746 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1747 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 1748 MyFragmentActivity Unnecessary Abstraction
## 1749 MyFragmentActivity Unnecessary Abstraction
## 1750 MyFragmentActivity Unutilized Abstraction
## 1751 MyFragmentActivity Unutilized Abstraction
## 1752 MyFragmentActivity Deficient Encapsulation
## 1753 MyFragmentActivity Deficient Encapsulation
## 1754 MyFragmentActivity Broken Modularization
## 1755 MyFragmentActivity Broken Modularization
## 1756 MyListFragment Unutilized Abstraction
## 1757 MyListFragment Unutilized Abstraction
## 1758 MySupportFragmentActivity Unnecessary Abstraction
## 1759 MySupportFragmentActivity Unnecessary Abstraction
## 1760 MySupportFragmentActivity Unutilized Abstraction
## 1761 MySupportFragmentActivity Unutilized Abstraction
## 1762 MySupportFragmentActivity Deficient Encapsulation
## 1763 MySupportFragmentActivity Deficient Encapsulation
## 1764 MySupportFragmentActivity Broken Modularization
## 1765 MySupportFragmentActivity Broken Modularization
## 1766 ReceiverWithActions Deficient Encapsulation
## 1767 ReceiverWithActions Deficient Encapsulation
## 1768 CustomButton Deficient Encapsulation
## 1769 CustomButton Deficient Encapsulation
## 1770 SaveInstanceStateActivity Broken Modularization
## 1771 SaveInstanceStateActivity Broken Modularization
## 1772 NonConfigurationActivity Unutilized Abstraction
## 1773 NonConfigurationActivity Unutilized Abstraction
## 1774 OrmLiteActivity Unnecessary Abstraction
## 1775 OrmLiteActivity Unnecessary Abstraction
## 1776 OrmLiteActivity Unutilized Abstraction
## 1777 OrmLiteActivity Unutilized Abstraction
## 1778 OrmLiteActivity Broken Modularization
## 1779 OrmLiteActivity Broken Modularization
## 1780 PreferenceEventsHandledActivity Multifaceted Abstraction
## 1781 PreferenceEventsHandledActivity Multifaceted Abstraction
## 1782 PreferenceEventsHandledActivity Unutilized Abstraction
## 1783 PreferenceEventsHandledActivity Unutilized Abstraction
## 1784 PreferenceScreenActivity Unnecessary Abstraction
## 1785 PreferenceScreenActivity Unnecessary Abstraction
## 1786 PreferenceScreenActivity Unutilized Abstraction
## 1787 PreferenceScreenActivity Unutilized Abstraction
## 1788 PrefsActivity Unutilized Abstraction
## 1789 PrefsActivity Unutilized Abstraction
## 1790 PrefsActivity Broken Modularization
## 1791 PrefsActivity Broken Modularization
## 1792 ActivityWithReceiver Unutilized Abstraction
## 1793 ActivityWithReceiver Unutilized Abstraction
## 1794 ActivityWithReceiver Deficient Encapsulation
## 1795 ActivityWithReceiver Deficient Encapsulation
## 1796 FragmentWithReceiver Deficient Encapsulation
## 1797 FragmentWithReceiver Deficient Encapsulation
## 1798 ResActivity Unutilized Abstraction
## 1799 ResActivity Unutilized Abstraction
## 1800 ResActivity Broken Modularization
## 1801 ResActivity Broken Modularization
## 1802 MyService Insufficient Modularization
## 1803 MyService Insufficient Modularization
## 1804 MySherlockActivity Unutilized Abstraction
## 1805 MySherlockActivity Unutilized Abstraction
## 1806 TracedActivity Multifaceted Abstraction
## 1807 TracedActivity Multifaceted Abstraction
## 1808 TracedActivity Deficient Encapsulation
## 1809 TracedActivity Deficient Encapsulation
## 1810 ValidatorParameterHelper Insufficient Modularization
## 1811 ValidatorParameterHelper Insufficient Modularization
## 1812 ValidatorParameterHelper Insufficient Modularization
## 1813 ValidatorParameterHelper Insufficient Modularization
## 1814 ValidatorParameterHelper Insufficient Modularization
## 1815 ValidatorParameterHelper Insufficient Modularization
## 1816 ValidatorParameterHelper Insufficient Modularization
## 1817 ValidatorParameterHelper Insufficient Modularization
## 1818 ValidatorParameterHelper Insufficient Modularization
## 1819 ValidatorParameterHelper Insufficient Modularization
## 1820 ValidatorParameterHelper Insufficient Modularization
## 1821 ValidatorParameterHelper Insufficient Modularization
## 1822 AndroidManifestFinder Feature Envy
## 1823 AndroidManifestFinder Feature Envy
## 1824 AndroidManifestFinder Feature Envy
## 1825 AndroidManifestFinder Feature Envy
## 1826 AndroidManifestFinder Feature Envy
## 1827 AndroidManifestFinder Feature Envy
## 1828 AndroidManifestFinder Feature Envy
## 1829 AndroidManifestFinder Feature Envy
## 1830 AndroidManifestFinder Feature Envy
## 1831 AndroidManifestFinder Feature Envy
## 1832 AndroidManifestFinder Feature Envy
## 1833 AndroidManifestFinder Feature Envy
## 1834 AndroidManifestFinder Deficient Encapsulation
## 1835 AndroidManifestFinder Deficient Encapsulation
## 1836 AndroidManifestFinder Deficient Encapsulation
## 1837 AndroidManifestFinder Deficient Encapsulation
## 1838 AndroidManifestFinder Deficient Encapsulation
## 1839 AndroidManifestFinder Deficient Encapsulation
## 1840 AndroidManifestFinder Deficient Encapsulation
## 1841 AndroidManifestFinder Deficient Encapsulation
## 1842 AndroidManifestFinder Deficient Encapsulation
## 1843 AndroidManifestFinder Deficient Encapsulation
## 1844 AndroidManifestFinder Deficient Encapsulation
## 1845 AndroidManifestFinder Deficient Encapsulation
## 1846 Formatter Cyclically-dependent Modularization
## 1847 Formatter Cyclically-dependent Modularization
## 1848 Formatter Cyclically-dependent Modularization
## 1849 Formatter Cyclically-dependent Modularization
## 1850 Formatter Cyclically-dependent Modularization
## 1851 Formatter Cyclically-dependent Modularization
## 1852 Formatter Cyclically-dependent Modularization
## 1853 Formatter Cyclically-dependent Modularization
## 1854 Formatter Cyclically-dependent Modularization
## 1855 Formatter Cyclically-dependent Modularization
## 1856 Formatter Cyclically-dependent Modularization
## 1857 Formatter Cyclically-dependent Modularization
## 1858 Formatter Cyclically-dependent Modularization
## 1859 Formatter Cyclically-dependent Modularization
## 1860 Logger Cyclically-dependent Modularization
## 1861 Logger Cyclically-dependent Modularization
## 1862 Logger Cyclically-dependent Modularization
## 1863 Logger Cyclically-dependent Modularization
## 1864 Logger Cyclically-dependent Modularization
## 1865 Logger Cyclically-dependent Modularization
## 1866 Logger Cyclically-dependent Modularization
## 1867 Logger Cyclically-dependent Modularization
## 1868 Logger Cyclically-dependent Modularization
## 1869 Logger Cyclically-dependent Modularization
## 1870 Logger Cyclically-dependent Modularization
## 1871 Logger Cyclically-dependent Modularization
## 1872 Logger Cyclically-dependent Modularization
## 1873 Logger Cyclically-dependent Modularization
## 1874 AbstractActivity Unnecessary Abstraction
## 1875 AbstractActivity Unnecessary Abstraction
## 1876 AbstractActivity Unnecessary Abstraction
## 1877 AbstractActivity Unnecessary Abstraction
## 1878 AbstractActivity Unnecessary Abstraction
## 1879 AbstractActivity Unnecessary Abstraction
## 1880 AbstractActivity Unnecessary Abstraction
## 1881 AbstractActivity Unnecessary Abstraction
## 1882 AbstractActivity Unnecessary Abstraction
## 1883 AbstractActivity Unnecessary Abstraction
## 1884 AbstractActivity Unnecessary Abstraction
## 1885 AbstractActivity Unnecessary Abstraction
## 1886 CheckedChangeHandledActivity Unutilized Abstraction
## 1887 CheckedChangeHandledActivity Unutilized Abstraction
## 1888 CheckedChangeHandledActivity Unutilized Abstraction
## 1889 CheckedChangeHandledActivity Unutilized Abstraction
## 1890 CheckedChangeHandledActivity Unutilized Abstraction
## 1891 CheckedChangeHandledActivity Unutilized Abstraction
## 1892 CheckedChangeHandledActivity Unutilized Abstraction
## 1893 CheckedChangeHandledActivity Unutilized Abstraction
## 1894 CheckedChangeHandledActivity Unutilized Abstraction
## 1895 CheckedChangeHandledActivity Unutilized Abstraction
## 1896 CheckedChangeHandledActivity Unutilized Abstraction
## 1897 CheckedChangeHandledActivity Unutilized Abstraction
## 1898 CheckedChangeHandledActivity Broken Hierarchy
## 1899 CheckedChangeHandledActivity Broken Hierarchy
## 1900 CheckedChangeHandledActivity Broken Hierarchy
## 1901 CheckedChangeHandledActivity Broken Hierarchy
## 1902 CheckedChangeHandledActivity Broken Hierarchy
## 1903 CheckedChangeHandledActivity Broken Hierarchy
## 1904 CheckedChangeHandledActivity Broken Hierarchy
## 1905 CheckedChangeHandledActivity Broken Hierarchy
## 1906 CheckedChangeHandledActivity Broken Hierarchy
## 1907 CheckedChangeHandledActivity Broken Hierarchy
## 1908 CheckedChangeHandledActivity Broken Hierarchy
## 1909 CheckedChangeHandledActivity Broken Hierarchy
## 1910 ClicksHandledActivity Unutilized Abstraction
## 1911 ClicksHandledActivity Unutilized Abstraction
## 1912 ClicksHandledActivity Unutilized Abstraction
## 1913 ClicksHandledActivity Unutilized Abstraction
## 1914 ClicksHandledActivity Unutilized Abstraction
## 1915 ClicksHandledActivity Unutilized Abstraction
## 1916 ClicksHandledActivity Unutilized Abstraction
## 1917 ClicksHandledActivity Unutilized Abstraction
## 1918 ClicksHandledActivity Unutilized Abstraction
## 1919 ClicksHandledActivity Unutilized Abstraction
## 1920 ClicksHandledActivity Unutilized Abstraction
## 1921 ClicksHandledActivity Unutilized Abstraction
## 1922 ClicksHandledActivity Broken Hierarchy
## 1923 ClicksHandledActivity Broken Hierarchy
## 1924 ClicksHandledActivity Broken Hierarchy
## 1925 ClicksHandledActivity Broken Hierarchy
## 1926 ClicksHandledActivity Broken Hierarchy
## 1927 ClicksHandledActivity Broken Hierarchy
## 1928 ClicksHandledActivity Broken Hierarchy
## 1929 ClicksHandledActivity Broken Hierarchy
## 1930 ClicksHandledActivity Broken Hierarchy
## 1931 ClicksHandledActivity Broken Hierarchy
## 1932 ClicksHandledActivity Broken Hierarchy
## 1933 ClicksHandledActivity Broken Hierarchy
## 1934 EmptyActivityWithLayout Unnecessary Abstraction
## 1935 EmptyActivityWithLayout Unnecessary Abstraction
## 1936 EmptyActivityWithLayout Unnecessary Abstraction
## 1937 EmptyActivityWithLayout Unnecessary Abstraction
## 1938 EmptyActivityWithLayout Unnecessary Abstraction
## 1939 EmptyActivityWithLayout Unnecessary Abstraction
## 1940 EmptyActivityWithLayout Unnecessary Abstraction
## 1941 EmptyActivityWithLayout Unnecessary Abstraction
## 1942 EmptyActivityWithLayout Unnecessary Abstraction
## 1943 EmptyActivityWithLayout Unnecessary Abstraction
## 1944 EmptyActivityWithLayout Unnecessary Abstraction
## 1945 EmptyActivityWithLayout Unnecessary Abstraction
## 1946 EmptyActivityWithLayout Unutilized Abstraction
## 1947 EmptyActivityWithLayout Unutilized Abstraction
## 1948 EmptyActivityWithLayout Unutilized Abstraction
## 1949 EmptyActivityWithLayout Unutilized Abstraction
## 1950 EmptyActivityWithLayout Unutilized Abstraction
## 1951 EmptyActivityWithLayout Unutilized Abstraction
## 1952 EmptyActivityWithLayout Unutilized Abstraction
## 1953 EmptyActivityWithLayout Unutilized Abstraction
## 1954 EmptyActivityWithLayout Unutilized Abstraction
## 1955 EmptyActivityWithLayout Unutilized Abstraction
## 1956 EmptyActivityWithLayout Unutilized Abstraction
## 1957 EmptyActivityWithLayout Unutilized Abstraction
## 1958 FocusChangeHandledActivity Unutilized Abstraction
## 1959 FocusChangeHandledActivity Unutilized Abstraction
## 1960 FocusChangeHandledActivity Unutilized Abstraction
## 1961 FocusChangeHandledActivity Unutilized Abstraction
## 1962 FocusChangeHandledActivity Unutilized Abstraction
## 1963 FocusChangeHandledActivity Unutilized Abstraction
## 1964 FocusChangeHandledActivity Unutilized Abstraction
## 1965 FocusChangeHandledActivity Unutilized Abstraction
## 1966 FocusChangeHandledActivity Unutilized Abstraction
## 1967 FocusChangeHandledActivity Unutilized Abstraction
## 1968 FocusChangeHandledActivity Unutilized Abstraction
## 1969 FocusChangeHandledActivity Unutilized Abstraction
## 1970 FocusChangeHandledActivity Broken Hierarchy
## 1971 FocusChangeHandledActivity Broken Hierarchy
## 1972 FocusChangeHandledActivity Broken Hierarchy
## 1973 FocusChangeHandledActivity Broken Hierarchy
## 1974 FocusChangeHandledActivity Broken Hierarchy
## 1975 FocusChangeHandledActivity Broken Hierarchy
## 1976 FocusChangeHandledActivity Broken Hierarchy
## 1977 FocusChangeHandledActivity Broken Hierarchy
## 1978 FocusChangeHandledActivity Broken Hierarchy
## 1979 FocusChangeHandledActivity Broken Hierarchy
## 1980 FocusChangeHandledActivity Broken Hierarchy
## 1981 FocusChangeHandledActivity Broken Hierarchy
## 1982 FromHtmlActivity Unnecessary Abstraction
## 1983 FromHtmlActivity Unnecessary Abstraction
## 1984 FromHtmlActivity Unnecessary Abstraction
## 1985 FromHtmlActivity Unnecessary Abstraction
## 1986 FromHtmlActivity Unnecessary Abstraction
## 1987 FromHtmlActivity Unnecessary Abstraction
## 1988 FromHtmlActivity Unnecessary Abstraction
## 1989 FromHtmlActivity Unnecessary Abstraction
## 1990 FromHtmlActivity Unnecessary Abstraction
## 1991 FromHtmlActivity Unnecessary Abstraction
## 1992 FromHtmlActivity Unnecessary Abstraction
## 1993 FromHtmlActivity Unnecessary Abstraction
## 1994 FromHtmlActivity Unutilized Abstraction
## 1995 FromHtmlActivity Unutilized Abstraction
## 1996 FromHtmlActivity Unutilized Abstraction
## 1997 FromHtmlActivity Unutilized Abstraction
## 1998 FromHtmlActivity Unutilized Abstraction
## 1999 FromHtmlActivity Unutilized Abstraction
## 2000 FromHtmlActivity Unutilized Abstraction
## 2001 FromHtmlActivity Unutilized Abstraction
## 2002 FromHtmlActivity Unutilized Abstraction
## 2003 FromHtmlActivity Unutilized Abstraction
## 2004 FromHtmlActivity Unutilized Abstraction
## 2005 FromHtmlActivity Unutilized Abstraction
## 2006 ItemClicksHandledActivity Unutilized Abstraction
## 2007 ItemClicksHandledActivity Unutilized Abstraction
## 2008 ItemClicksHandledActivity Unutilized Abstraction
## 2009 ItemClicksHandledActivity Unutilized Abstraction
## 2010 ItemClicksHandledActivity Unutilized Abstraction
## 2011 ItemClicksHandledActivity Unutilized Abstraction
## 2012 ItemClicksHandledActivity Unutilized Abstraction
## 2013 ItemClicksHandledActivity Unutilized Abstraction
## 2014 ItemClicksHandledActivity Unutilized Abstraction
## 2015 ItemClicksHandledActivity Unutilized Abstraction
## 2016 ItemClicksHandledActivity Unutilized Abstraction
## 2017 ItemClicksHandledActivity Unutilized Abstraction
## 2018 LongClicksHandledActivity Unutilized Abstraction
## 2019 LongClicksHandledActivity Unutilized Abstraction
## 2020 LongClicksHandledActivity Unutilized Abstraction
## 2021 LongClicksHandledActivity Unutilized Abstraction
## 2022 LongClicksHandledActivity Unutilized Abstraction
## 2023 LongClicksHandledActivity Unutilized Abstraction
## 2024 LongClicksHandledActivity Unutilized Abstraction
## 2025 LongClicksHandledActivity Unutilized Abstraction
## 2026 LongClicksHandledActivity Unutilized Abstraction
## 2027 LongClicksHandledActivity Unutilized Abstraction
## 2028 LongClicksHandledActivity Unutilized Abstraction
## 2029 LongClicksHandledActivity Unutilized Abstraction
## 2030 LongClicksHandledActivity Broken Hierarchy
## 2031 LongClicksHandledActivity Broken Hierarchy
## 2032 LongClicksHandledActivity Broken Hierarchy
## 2033 LongClicksHandledActivity Broken Hierarchy
## 2034 LongClicksHandledActivity Broken Hierarchy
## 2035 LongClicksHandledActivity Broken Hierarchy
## 2036 LongClicksHandledActivity Broken Hierarchy
## 2037 LongClicksHandledActivity Broken Hierarchy
## 2038 LongClicksHandledActivity Broken Hierarchy
## 2039 LongClicksHandledActivity Broken Hierarchy
## 2040 LongClicksHandledActivity Broken Hierarchy
## 2041 LongClicksHandledActivity Broken Hierarchy
## 2042 PageChangeListenerActivity Unutilized Abstraction
## 2043 PageChangeListenerActivity Unutilized Abstraction
## 2044 PageChangeListenerActivity Unutilized Abstraction
## 2045 PageChangeListenerActivity Unutilized Abstraction
## 2046 PageChangeListenerActivity Unutilized Abstraction
## 2047 PageChangeListenerActivity Unutilized Abstraction
## 2048 PageChangeListenerActivity Unutilized Abstraction
## 2049 PageChangeListenerActivity Unutilized Abstraction
## 2050 PageChangeListenerActivity Unutilized Abstraction
## 2051 PageChangeListenerActivity Unutilized Abstraction
## 2052 PageChangeListenerActivity Unutilized Abstraction
## 2053 PageChangeListenerActivity Unutilized Abstraction
## 2054 PageChangeListenerActivity Deficient Encapsulation
## 2055 PageChangeListenerActivity Deficient Encapsulation
## 2056 PageChangeListenerActivity Deficient Encapsulation
## 2057 PageChangeListenerActivity Deficient Encapsulation
## 2058 PageChangeListenerActivity Deficient Encapsulation
## 2059 PageChangeListenerActivity Deficient Encapsulation
## 2060 PageChangeListenerActivity Deficient Encapsulation
## 2061 PageChangeListenerActivity Deficient Encapsulation
## 2062 PageChangeListenerActivity Deficient Encapsulation
## 2063 PageChangeListenerActivity Deficient Encapsulation
## 2064 PageChangeListenerActivity Deficient Encapsulation
## 2065 PageChangeListenerActivity Deficient Encapsulation
## 2066 SeekBarChangeListenedActivity Unutilized Abstraction
## 2067 SeekBarChangeListenedActivity Unutilized Abstraction
## 2068 SeekBarChangeListenedActivity Unutilized Abstraction
## 2069 SeekBarChangeListenedActivity Unutilized Abstraction
## 2070 SeekBarChangeListenedActivity Unutilized Abstraction
## 2071 SeekBarChangeListenedActivity Unutilized Abstraction
## 2072 SeekBarChangeListenedActivity Unutilized Abstraction
## 2073 SeekBarChangeListenedActivity Unutilized Abstraction
## 2074 SeekBarChangeListenedActivity Unutilized Abstraction
## 2075 SeekBarChangeListenedActivity Unutilized Abstraction
## 2076 SeekBarChangeListenedActivity Unutilized Abstraction
## 2077 SeekBarChangeListenedActivity Unutilized Abstraction
## 2078 SSLConnection Unutilized Abstraction
## 2079 SSLConnection Unutilized Abstraction
## 2080 SSLConnection Unutilized Abstraction
## 2081 SSLConnection Unutilized Abstraction
## 2082 SSLConnection Unutilized Abstraction
## 2083 SSLConnection Unutilized Abstraction
## 2084 SSLConnection Unutilized Abstraction
## 2085 SSLConnection Unutilized Abstraction
## 2086 SSLConnection Unutilized Abstraction
## 2087 SSLConnection Unutilized Abstraction
## 2088 SSLConnection Unutilized Abstraction
## 2089 SSLConnection Unutilized Abstraction
## 2090 TextWatchedActivity Multifaceted Abstraction
## 2091 TextWatchedActivity Multifaceted Abstraction
## 2092 TextWatchedActivity Multifaceted Abstraction
## 2093 TextWatchedActivity Multifaceted Abstraction
## 2094 TextWatchedActivity Multifaceted Abstraction
## 2095 TextWatchedActivity Multifaceted Abstraction
## 2096 TextWatchedActivity Multifaceted Abstraction
## 2097 TextWatchedActivity Multifaceted Abstraction
## 2098 TextWatchedActivity Multifaceted Abstraction
## 2099 TextWatchedActivity Multifaceted Abstraction
## 2100 TextWatchedActivity Multifaceted Abstraction
## 2101 TextWatchedActivity Multifaceted Abstraction
## 2102 TextWatchedActivity Unutilized Abstraction
## 2103 TextWatchedActivity Unutilized Abstraction
## 2104 TextWatchedActivity Unutilized Abstraction
## 2105 TextWatchedActivity Unutilized Abstraction
## 2106 TextWatchedActivity Unutilized Abstraction
## 2107 TextWatchedActivity Unutilized Abstraction
## 2108 TextWatchedActivity Unutilized Abstraction
## 2109 TextWatchedActivity Unutilized Abstraction
## 2110 TextWatchedActivity Unutilized Abstraction
## 2111 TextWatchedActivity Unutilized Abstraction
## 2112 TextWatchedActivity Unutilized Abstraction
## 2113 TextWatchedActivity Unutilized Abstraction
## 2114 ThreadActivity Deficient Encapsulation
## 2115 ThreadActivity Deficient Encapsulation
## 2116 ThreadActivity Deficient Encapsulation
## 2117 ThreadActivity Deficient Encapsulation
## 2118 ThreadActivity Deficient Encapsulation
## 2119 ThreadActivity Deficient Encapsulation
## 2120 ThreadActivity Deficient Encapsulation
## 2121 ThreadActivity Deficient Encapsulation
## 2122 ThreadActivity Deficient Encapsulation
## 2123 ThreadActivity Deficient Encapsulation
## 2124 ThreadActivity Deficient Encapsulation
## 2125 ThreadActivity Deficient Encapsulation
## 2126 TouchesHandledActivity Unutilized Abstraction
## 2127 TouchesHandledActivity Unutilized Abstraction
## 2128 TouchesHandledActivity Unutilized Abstraction
## 2129 TouchesHandledActivity Unutilized Abstraction
## 2130 TouchesHandledActivity Unutilized Abstraction
## 2131 TouchesHandledActivity Unutilized Abstraction
## 2132 TouchesHandledActivity Unutilized Abstraction
## 2133 TouchesHandledActivity Unutilized Abstraction
## 2134 TouchesHandledActivity Unutilized Abstraction
## 2135 TouchesHandledActivity Unutilized Abstraction
## 2136 TouchesHandledActivity Unutilized Abstraction
## 2137 TouchesHandledActivity Unutilized Abstraction
## 2138 TouchesHandledActivity Broken Hierarchy
## 2139 TouchesHandledActivity Broken Hierarchy
## 2140 TouchesHandledActivity Broken Hierarchy
## 2141 TouchesHandledActivity Broken Hierarchy
## 2142 TouchesHandledActivity Broken Hierarchy
## 2143 TouchesHandledActivity Broken Hierarchy
## 2144 TouchesHandledActivity Broken Hierarchy
## 2145 TouchesHandledActivity Broken Hierarchy
## 2146 TouchesHandledActivity Broken Hierarchy
## 2147 TouchesHandledActivity Broken Hierarchy
## 2148 TouchesHandledActivity Broken Hierarchy
## 2149 TouchesHandledActivity Broken Hierarchy
## 2150 TransactionalActivity Unutilized Abstraction
## 2151 TransactionalActivity Unutilized Abstraction
## 2152 TransactionalActivity Unutilized Abstraction
## 2153 TransactionalActivity Unutilized Abstraction
## 2154 TransactionalActivity Unutilized Abstraction
## 2155 TransactionalActivity Unutilized Abstraction
## 2156 TransactionalActivity Unutilized Abstraction
## 2157 TransactionalActivity Unutilized Abstraction
## 2158 TransactionalActivity Unutilized Abstraction
## 2159 TransactionalActivity Unutilized Abstraction
## 2160 TransactionalActivity Unutilized Abstraction
## 2161 TransactionalActivity Unutilized Abstraction
## 2162 ViewsInjectedActivity Unutilized Abstraction
## 2163 ViewsInjectedActivity Unutilized Abstraction
## 2164 ViewsInjectedActivity Unutilized Abstraction
## 2165 ViewsInjectedActivity Unutilized Abstraction
## 2166 ViewsInjectedActivity Unutilized Abstraction
## 2167 ViewsInjectedActivity Unutilized Abstraction
## 2168 ViewsInjectedActivity Unutilized Abstraction
## 2169 ViewsInjectedActivity Unutilized Abstraction
## 2170 ViewsInjectedActivity Unutilized Abstraction
## 2171 ViewsInjectedActivity Unutilized Abstraction
## 2172 ViewsInjectedActivity Unutilized Abstraction
## 2173 ViewsInjectedActivity Unutilized Abstraction
## 2174 AfterExtrasActivity Unutilized Abstraction
## 2175 AfterExtrasActivity Unutilized Abstraction
## 2176 AfterExtrasActivity Unutilized Abstraction
## 2177 AfterExtrasActivity Unutilized Abstraction
## 2178 AfterExtrasActivity Unutilized Abstraction
## 2179 AfterExtrasActivity Unutilized Abstraction
## 2180 AfterExtrasActivity Unutilized Abstraction
## 2181 AfterExtrasActivity Unutilized Abstraction
## 2182 AfterExtrasActivity Unutilized Abstraction
## 2183 AfterExtrasActivity Unutilized Abstraction
## 2184 AfterExtrasActivity Unutilized Abstraction
## 2185 AfterExtrasActivity Unutilized Abstraction
## 2186 AfterExtrasActivity Deficient Encapsulation
## 2187 AfterExtrasActivity Deficient Encapsulation
## 2188 AfterExtrasActivity Deficient Encapsulation
## 2189 AfterExtrasActivity Deficient Encapsulation
## 2190 AfterExtrasActivity Deficient Encapsulation
## 2191 AfterExtrasActivity Deficient Encapsulation
## 2192 AfterExtrasActivity Deficient Encapsulation
## 2193 AfterExtrasActivity Deficient Encapsulation
## 2194 AfterExtrasActivity Deficient Encapsulation
## 2195 AfterExtrasActivity Deficient Encapsulation
## 2196 AfterExtrasActivity Deficient Encapsulation
## 2197 AfterExtrasActivity Deficient Encapsulation
## 2198 AfterInjectActivity Unutilized Abstraction
## 2199 AfterInjectActivity Unutilized Abstraction
## 2200 AfterInjectActivity Unutilized Abstraction
## 2201 AfterInjectActivity Unutilized Abstraction
## 2202 AfterInjectActivity Unutilized Abstraction
## 2203 AfterInjectActivity Unutilized Abstraction
## 2204 AfterInjectActivity Unutilized Abstraction
## 2205 AfterInjectActivity Unutilized Abstraction
## 2206 AfterInjectActivity Unutilized Abstraction
## 2207 AfterInjectActivity Unutilized Abstraction
## 2208 AfterInjectActivity Unutilized Abstraction
## 2209 AfterInjectActivity Unutilized Abstraction
## 2210 AfterInjectActivity Deficient Encapsulation
## 2211 AfterInjectActivity Deficient Encapsulation
## 2212 AfterInjectActivity Deficient Encapsulation
## 2213 AfterInjectActivity Deficient Encapsulation
## 2214 AfterInjectActivity Deficient Encapsulation
## 2215 AfterInjectActivity Deficient Encapsulation
## 2216 AfterInjectActivity Deficient Encapsulation
## 2217 AfterInjectActivity Deficient Encapsulation
## 2218 AfterInjectActivity Deficient Encapsulation
## 2219 AfterInjectActivity Deficient Encapsulation
## 2220 AfterInjectActivity Deficient Encapsulation
## 2221 AfterInjectActivity Deficient Encapsulation
## 2222 AfterInjectBean Deficient Encapsulation
## 2223 AfterInjectBean Deficient Encapsulation
## 2224 AfterInjectBean Deficient Encapsulation
## 2225 AfterInjectBean Deficient Encapsulation
## 2226 AfterInjectBean Deficient Encapsulation
## 2227 AfterInjectBean Deficient Encapsulation
## 2228 AfterInjectBean Deficient Encapsulation
## 2229 AfterInjectBean Deficient Encapsulation
## 2230 AfterInjectBean Deficient Encapsulation
## 2231 AfterInjectBean Deficient Encapsulation
## 2232 AfterInjectBean Deficient Encapsulation
## 2233 AfterInjectBean Deficient Encapsulation
## 2234 AfterViewsActivity Unutilized Abstraction
## 2235 AfterViewsActivity Unutilized Abstraction
## 2236 AfterViewsActivity Unutilized Abstraction
## 2237 AfterViewsActivity Unutilized Abstraction
## 2238 AfterViewsActivity Unutilized Abstraction
## 2239 AfterViewsActivity Unutilized Abstraction
## 2240 AfterViewsActivity Unutilized Abstraction
## 2241 AfterViewsActivity Unutilized Abstraction
## 2242 AfterViewsActivity Unutilized Abstraction
## 2243 AfterViewsActivity Unutilized Abstraction
## 2244 AfterViewsActivity Unutilized Abstraction
## 2245 AfterViewsActivity Unutilized Abstraction
## 2246 AfterViewsActivity Deficient Encapsulation
## 2247 AfterViewsActivity Deficient Encapsulation
## 2248 AfterViewsActivity Deficient Encapsulation
## 2249 AfterViewsActivity Deficient Encapsulation
## 2250 AfterViewsActivity Deficient Encapsulation
## 2251 AfterViewsActivity Deficient Encapsulation
## 2252 AfterViewsActivity Deficient Encapsulation
## 2253 AfterViewsActivity Deficient Encapsulation
## 2254 AfterViewsActivity Deficient Encapsulation
## 2255 AfterViewsActivity Deficient Encapsulation
## 2256 AfterViewsActivity Deficient Encapsulation
## 2257 AfterViewsActivity Deficient Encapsulation
## 2258 BeanInjectedActivity Multifaceted Abstraction
## 2259 BeanInjectedActivity Multifaceted Abstraction
## 2260 BeanInjectedActivity Multifaceted Abstraction
## 2261 BeanInjectedActivity Multifaceted Abstraction
## 2262 BeanInjectedActivity Multifaceted Abstraction
## 2263 BeanInjectedActivity Multifaceted Abstraction
## 2264 BeanInjectedActivity Multifaceted Abstraction
## 2265 BeanInjectedActivity Multifaceted Abstraction
## 2266 BeanInjectedActivity Multifaceted Abstraction
## 2267 BeanInjectedActivity Multifaceted Abstraction
## 2268 BeanInjectedActivity Multifaceted Abstraction
## 2269 BeanInjectedActivity Multifaceted Abstraction
## 2270 BeanInjectedActivity Unutilized Abstraction
## 2271 BeanInjectedActivity Unutilized Abstraction
## 2272 BeanInjectedActivity Unutilized Abstraction
## 2273 BeanInjectedActivity Unutilized Abstraction
## 2274 BeanInjectedActivity Unutilized Abstraction
## 2275 BeanInjectedActivity Unutilized Abstraction
## 2276 BeanInjectedActivity Unutilized Abstraction
## 2277 BeanInjectedActivity Unutilized Abstraction
## 2278 BeanInjectedActivity Unutilized Abstraction
## 2279 BeanInjectedActivity Unutilized Abstraction
## 2280 BeanInjectedActivity Unutilized Abstraction
## 2281 BeanInjectedActivity Unutilized Abstraction
## 2282 BeanInjectedActivity Deficient Encapsulation
## 2283 BeanInjectedActivity Deficient Encapsulation
## 2284 BeanInjectedActivity Deficient Encapsulation
## 2285 BeanInjectedActivity Deficient Encapsulation
## 2286 BeanInjectedActivity Deficient Encapsulation
## 2287 BeanInjectedActivity Deficient Encapsulation
## 2288 BeanInjectedActivity Deficient Encapsulation
## 2289 BeanInjectedActivity Deficient Encapsulation
## 2290 BeanInjectedActivity Deficient Encapsulation
## 2291 BeanInjectedActivity Deficient Encapsulation
## 2292 BeanInjectedActivity Deficient Encapsulation
## 2293 BeanInjectedActivity Deficient Encapsulation
## 2294 SomeBean Deficient Encapsulation
## 2295 SomeBean Deficient Encapsulation
## 2296 SomeBean Deficient Encapsulation
## 2297 SomeBean Deficient Encapsulation
## 2298 SomeBean Deficient Encapsulation
## 2299 SomeBean Deficient Encapsulation
## 2300 SomeBean Deficient Encapsulation
## 2301 SomeBean Deficient Encapsulation
## 2302 SomeBean Deficient Encapsulation
## 2303 SomeBean Deficient Encapsulation
## 2304 SomeBean Deficient Encapsulation
## 2305 SomeBean Deficient Encapsulation
## 2306 SomeSingleton Unnecessary Abstraction
## 2307 SomeSingleton Unnecessary Abstraction
## 2308 SomeSingleton Unnecessary Abstraction
## 2309 SomeSingleton Unnecessary Abstraction
## 2310 SomeSingleton Unnecessary Abstraction
## 2311 SomeSingleton Unnecessary Abstraction
## 2312 SomeSingleton Unnecessary Abstraction
## 2313 SomeSingleton Unnecessary Abstraction
## 2314 SomeSingleton Unnecessary Abstraction
## 2315 SomeSingleton Unnecessary Abstraction
## 2316 SomeSingleton Unnecessary Abstraction
## 2317 SomeSingleton Unnecessary Abstraction
## 2318 SomeSingleton Deficient Encapsulation
## 2319 SomeSingleton Deficient Encapsulation
## 2320 SomeSingleton Deficient Encapsulation
## 2321 SomeSingleton Deficient Encapsulation
## 2322 SomeSingleton Deficient Encapsulation
## 2323 SomeSingleton Deficient Encapsulation
## 2324 SomeSingleton Deficient Encapsulation
## 2325 SomeSingleton Deficient Encapsulation
## 2326 SomeSingleton Deficient Encapsulation
## 2327 SomeSingleton Deficient Encapsulation
## 2328 SomeSingleton Deficient Encapsulation
## 2329 SomeSingleton Deficient Encapsulation
## 2330 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2331 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2332 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2333 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2334 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2335 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2336 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2337 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2338 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2339 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2340 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2341 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 2342 MyFragmentActivity Unutilized Abstraction
## 2343 MyFragmentActivity Unutilized Abstraction
## 2344 MyFragmentActivity Unutilized Abstraction
## 2345 MyFragmentActivity Unutilized Abstraction
## 2346 MyFragmentActivity Unutilized Abstraction
## 2347 MyFragmentActivity Unutilized Abstraction
## 2348 MyFragmentActivity Unutilized Abstraction
## 2349 MyFragmentActivity Unutilized Abstraction
## 2350 MyFragmentActivity Unutilized Abstraction
## 2351 MyFragmentActivity Unutilized Abstraction
## 2352 MyFragmentActivity Unutilized Abstraction
## 2353 MyFragmentActivity Unutilized Abstraction
## 2354 MyFragmentActivity Deficient Encapsulation
## 2355 MyFragmentActivity Deficient Encapsulation
## 2356 MyFragmentActivity Deficient Encapsulation
## 2357 MyFragmentActivity Deficient Encapsulation
## 2358 MyFragmentActivity Deficient Encapsulation
## 2359 MyFragmentActivity Deficient Encapsulation
## 2360 MyFragmentActivity Deficient Encapsulation
## 2361 MyFragmentActivity Deficient Encapsulation
## 2362 MyFragmentActivity Deficient Encapsulation
## 2363 MyFragmentActivity Deficient Encapsulation
## 2364 MyFragmentActivity Deficient Encapsulation
## 2365 MyFragmentActivity Deficient Encapsulation
## 2366 MyListFragment Unutilized Abstraction
## 2367 MyListFragment Unutilized Abstraction
## 2368 MyListFragment Unutilized Abstraction
## 2369 MyListFragment Unutilized Abstraction
## 2370 MyListFragment Unutilized Abstraction
## 2371 MyListFragment Unutilized Abstraction
## 2372 MyListFragment Unutilized Abstraction
## 2373 MyListFragment Unutilized Abstraction
## 2374 MyListFragment Unutilized Abstraction
## 2375 MyListFragment Unutilized Abstraction
## 2376 MyListFragment Unutilized Abstraction
## 2377 MyListFragment Unutilized Abstraction
## 2378 MySupportFragmentActivity Unnecessary Abstraction
## 2379 MySupportFragmentActivity Unnecessary Abstraction
## 2380 MySupportFragmentActivity Unnecessary Abstraction
## 2381 MySupportFragmentActivity Unnecessary Abstraction
## 2382 MySupportFragmentActivity Unnecessary Abstraction
## 2383 MySupportFragmentActivity Unnecessary Abstraction
## 2384 MySupportFragmentActivity Unnecessary Abstraction
## 2385 MySupportFragmentActivity Unnecessary Abstraction
## 2386 MySupportFragmentActivity Unnecessary Abstraction
## 2387 MySupportFragmentActivity Unnecessary Abstraction
## 2388 MySupportFragmentActivity Unnecessary Abstraction
## 2389 MySupportFragmentActivity Unnecessary Abstraction
## 2390 MySupportFragmentActivity Unutilized Abstraction
## 2391 MySupportFragmentActivity Unutilized Abstraction
## 2392 MySupportFragmentActivity Unutilized Abstraction
## 2393 MySupportFragmentActivity Unutilized Abstraction
## 2394 MySupportFragmentActivity Unutilized Abstraction
## 2395 MySupportFragmentActivity Unutilized Abstraction
## 2396 MySupportFragmentActivity Unutilized Abstraction
## 2397 MySupportFragmentActivity Unutilized Abstraction
## 2398 MySupportFragmentActivity Unutilized Abstraction
## 2399 MySupportFragmentActivity Unutilized Abstraction
## 2400 MySupportFragmentActivity Unutilized Abstraction
## 2401 MySupportFragmentActivity Unutilized Abstraction
## 2402 MySupportFragmentActivity Deficient Encapsulation
## 2403 MySupportFragmentActivity Deficient Encapsulation
## 2404 MySupportFragmentActivity Deficient Encapsulation
## 2405 MySupportFragmentActivity Deficient Encapsulation
## 2406 MySupportFragmentActivity Deficient Encapsulation
## 2407 MySupportFragmentActivity Deficient Encapsulation
## 2408 MySupportFragmentActivity Deficient Encapsulation
## 2409 MySupportFragmentActivity Deficient Encapsulation
## 2410 MySupportFragmentActivity Deficient Encapsulation
## 2411 MySupportFragmentActivity Deficient Encapsulation
## 2412 MySupportFragmentActivity Deficient Encapsulation
## 2413 MySupportFragmentActivity Deficient Encapsulation
## 2414 MySupportFragmentActivity Broken Modularization
## 2415 MySupportFragmentActivity Broken Modularization
## 2416 MySupportFragmentActivity Broken Modularization
## 2417 MySupportFragmentActivity Broken Modularization
## 2418 MySupportFragmentActivity Broken Modularization
## 2419 MySupportFragmentActivity Broken Modularization
## 2420 MySupportFragmentActivity Broken Modularization
## 2421 MySupportFragmentActivity Broken Modularization
## 2422 MySupportFragmentActivity Broken Modularization
## 2423 MySupportFragmentActivity Broken Modularization
## 2424 MySupportFragmentActivity Broken Modularization
## 2425 MySupportFragmentActivity Broken Modularization
## 2426 ReceiverWithActions Deficient Encapsulation
## 2427 ReceiverWithActions Deficient Encapsulation
## 2428 ReceiverWithActions Deficient Encapsulation
## 2429 ReceiverWithActions Deficient Encapsulation
## 2430 ReceiverWithActions Deficient Encapsulation
## 2431 ReceiverWithActions Deficient Encapsulation
## 2432 ReceiverWithActions Deficient Encapsulation
## 2433 ReceiverWithActions Deficient Encapsulation
## 2434 ReceiverWithActions Deficient Encapsulation
## 2435 ReceiverWithActions Deficient Encapsulation
## 2436 ReceiverWithActions Deficient Encapsulation
## 2437 ReceiverWithActions Deficient Encapsulation
## 2438 CustomButton Deficient Encapsulation
## 2439 CustomButton Deficient Encapsulation
## 2440 CustomButton Deficient Encapsulation
## 2441 CustomButton Deficient Encapsulation
## 2442 CustomButton Deficient Encapsulation
## 2443 CustomButton Deficient Encapsulation
## 2444 CustomButton Deficient Encapsulation
## 2445 CustomButton Deficient Encapsulation
## 2446 CustomButton Deficient Encapsulation
## 2447 CustomButton Deficient Encapsulation
## 2448 CustomButton Deficient Encapsulation
## 2449 CustomButton Deficient Encapsulation
## 2450 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2451 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2452 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2453 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2454 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2455 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2456 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2457 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2458 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2459 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2460 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2461 InstanceStateAfterInjectActivity Unutilized Abstraction
## 2462 SaveInstanceStateActivity Broken Modularization
## 2463 SaveInstanceStateActivity Broken Modularization
## 2464 SaveInstanceStateActivity Broken Modularization
## 2465 SaveInstanceStateActivity Broken Modularization
## 2466 SaveInstanceStateActivity Broken Modularization
## 2467 SaveInstanceStateActivity Broken Modularization
## 2468 SaveInstanceStateActivity Broken Modularization
## 2469 SaveInstanceStateActivity Broken Modularization
## 2470 SaveInstanceStateActivity Broken Modularization
## 2471 SaveInstanceStateActivity Broken Modularization
## 2472 SaveInstanceStateActivity Broken Modularization
## 2473 SaveInstanceStateActivity Broken Modularization
## 2474 InjectMenuActivity Unutilized Abstraction
## 2475 InjectMenuActivity Unutilized Abstraction
## 2476 InjectMenuActivity Unutilized Abstraction
## 2477 InjectMenuActivity Unutilized Abstraction
## 2478 InjectMenuActivity Unutilized Abstraction
## 2479 InjectMenuActivity Unutilized Abstraction
## 2480 InjectMenuActivity Unutilized Abstraction
## 2481 InjectMenuActivity Unutilized Abstraction
## 2482 InjectMenuActivity Unutilized Abstraction
## 2483 InjectMenuActivity Unutilized Abstraction
## 2484 InjectMenuActivity Unutilized Abstraction
## 2485 InjectMenuActivity Unutilized Abstraction
## 2486 OptionsMenuActivity Multifaceted Abstraction
## 2487 OptionsMenuActivity Multifaceted Abstraction
## 2488 OptionsMenuActivity Multifaceted Abstraction
## 2489 OptionsMenuActivity Multifaceted Abstraction
## 2490 OptionsMenuActivity Multifaceted Abstraction
## 2491 OptionsMenuActivity Multifaceted Abstraction
## 2492 OptionsMenuActivity Multifaceted Abstraction
## 2493 OptionsMenuActivity Multifaceted Abstraction
## 2494 OptionsMenuActivity Multifaceted Abstraction
## 2495 OptionsMenuActivity Multifaceted Abstraction
## 2496 OptionsMenuActivity Multifaceted Abstraction
## 2497 OptionsMenuActivity Multifaceted Abstraction
## 2498 NonConfigurationActivity Unutilized Abstraction
## 2499 NonConfigurationActivity Unutilized Abstraction
## 2500 NonConfigurationActivity Unutilized Abstraction
## 2501 NonConfigurationActivity Unutilized Abstraction
## 2502 NonConfigurationActivity Unutilized Abstraction
## 2503 NonConfigurationActivity Unutilized Abstraction
## 2504 NonConfigurationActivity Unutilized Abstraction
## 2505 NonConfigurationActivity Unutilized Abstraction
## 2506 NonConfigurationActivity Unutilized Abstraction
## 2507 NonConfigurationActivity Unutilized Abstraction
## 2508 NonConfigurationActivity Unutilized Abstraction
## 2509 NonConfigurationActivity Unutilized Abstraction
## 2510 PreferenceAnnotationsFragment Unutilized Abstraction
## 2511 PreferenceAnnotationsFragment Unutilized Abstraction
## 2512 PreferenceAnnotationsFragment Unutilized Abstraction
## 2513 PreferenceAnnotationsFragment Unutilized Abstraction
## 2514 PreferenceAnnotationsFragment Unutilized Abstraction
## 2515 PreferenceAnnotationsFragment Unutilized Abstraction
## 2516 PreferenceAnnotationsFragment Unutilized Abstraction
## 2517 PreferenceAnnotationsFragment Unutilized Abstraction
## 2518 PreferenceAnnotationsFragment Unutilized Abstraction
## 2519 PreferenceAnnotationsFragment Unutilized Abstraction
## 2520 PreferenceEventsHandledActivity Unutilized Abstraction
## 2521 PreferenceEventsHandledActivity Unutilized Abstraction
## 2522 PreferenceEventsHandledActivity Unutilized Abstraction
## 2523 PreferenceEventsHandledActivity Unutilized Abstraction
## 2524 PreferenceEventsHandledActivity Unutilized Abstraction
## 2525 PreferenceEventsHandledActivity Unutilized Abstraction
## 2526 PreferenceEventsHandledActivity Unutilized Abstraction
## 2527 PreferenceEventsHandledActivity Unutilized Abstraction
## 2528 PreferenceEventsHandledActivity Unutilized Abstraction
## 2529 PreferenceEventsHandledActivity Unutilized Abstraction
## 2530 PreferenceEventsHandledActivity Unutilized Abstraction
## 2531 PreferenceEventsHandledActivity Unutilized Abstraction
## 2532 PreferenceHeadersActivity Unutilized Abstraction
## 2533 PreferenceHeadersActivity Unutilized Abstraction
## 2534 PreferenceHeadersActivity Unutilized Abstraction
## 2535 PreferenceHeadersActivity Unutilized Abstraction
## 2536 PreferenceHeadersActivity Unutilized Abstraction
## 2537 PreferenceHeadersActivity Unutilized Abstraction
## 2538 PreferenceHeadersActivity Unutilized Abstraction
## 2539 PreferenceHeadersActivity Unutilized Abstraction
## 2540 PreferenceHeadersActivity Unutilized Abstraction
## 2541 PreferenceHeadersActivity Unutilized Abstraction
## 2542 PreferenceScreenActivity Unnecessary Abstraction
## 2543 PreferenceScreenActivity Unnecessary Abstraction
## 2544 PreferenceScreenActivity Unnecessary Abstraction
## 2545 PreferenceScreenActivity Unnecessary Abstraction
## 2546 PreferenceScreenActivity Unnecessary Abstraction
## 2547 PreferenceScreenActivity Unnecessary Abstraction
## 2548 PreferenceScreenActivity Unnecessary Abstraction
## 2549 PreferenceScreenActivity Unnecessary Abstraction
## 2550 PreferenceScreenActivity Unnecessary Abstraction
## 2551 PreferenceScreenActivity Unnecessary Abstraction
## 2552 PreferenceScreenActivity Unnecessary Abstraction
## 2553 PreferenceScreenActivity Unnecessary Abstraction
## 2554 PreferenceScreenActivity Unutilized Abstraction
## 2555 PreferenceScreenActivity Unutilized Abstraction
## 2556 PreferenceScreenActivity Unutilized Abstraction
## 2557 PreferenceScreenActivity Unutilized Abstraction
## 2558 PreferenceScreenActivity Unutilized Abstraction
## 2559 PreferenceScreenActivity Unutilized Abstraction
## 2560 PreferenceScreenActivity Unutilized Abstraction
## 2561 PreferenceScreenActivity Unutilized Abstraction
## 2562 PreferenceScreenActivity Unutilized Abstraction
## 2563 PreferenceScreenActivity Unutilized Abstraction
## 2564 PreferenceScreenActivity Unutilized Abstraction
## 2565 PreferenceScreenActivity Unutilized Abstraction
## 2566 PreferenceScreenFragment Unnecessary Abstraction
## 2567 PreferenceScreenFragment Unnecessary Abstraction
## 2568 PreferenceScreenFragment Unnecessary Abstraction
## 2569 PreferenceScreenFragment Unnecessary Abstraction
## 2570 PreferenceScreenFragment Unnecessary Abstraction
## 2571 PreferenceScreenFragment Unnecessary Abstraction
## 2572 PreferenceScreenFragment Unnecessary Abstraction
## 2573 PreferenceScreenFragment Unnecessary Abstraction
## 2574 PreferenceScreenFragment Unnecessary Abstraction
## 2575 PreferenceScreenFragment Unnecessary Abstraction
## 2576 PreferenceScreenFragment Unutilized Abstraction
## 2577 PreferenceScreenFragment Unutilized Abstraction
## 2578 PreferenceScreenFragment Unutilized Abstraction
## 2579 PreferenceScreenFragment Unutilized Abstraction
## 2580 PreferenceScreenFragment Unutilized Abstraction
## 2581 PreferenceScreenFragment Unutilized Abstraction
## 2582 PreferenceScreenFragment Unutilized Abstraction
## 2583 PreferenceScreenFragment Unutilized Abstraction
## 2584 PreferenceScreenFragment Unutilized Abstraction
## 2585 PreferenceScreenFragment Unutilized Abstraction
## 2586 PrefsActivity Unutilized Abstraction
## 2587 PrefsActivity Unutilized Abstraction
## 2588 PrefsActivity Unutilized Abstraction
## 2589 PrefsActivity Unutilized Abstraction
## 2590 PrefsActivity Unutilized Abstraction
## 2591 PrefsActivity Unutilized Abstraction
## 2592 PrefsActivity Unutilized Abstraction
## 2593 PrefsActivity Unutilized Abstraction
## 2594 PrefsActivity Unutilized Abstraction
## 2595 PrefsActivity Unutilized Abstraction
## 2596 PrefsActivity Unutilized Abstraction
## 2597 PrefsActivity Unutilized Abstraction
## 2598 ActivityWithReceiver Deficient Encapsulation
## 2599 ActivityWithReceiver Deficient Encapsulation
## 2600 ActivityWithReceiver Deficient Encapsulation
## 2601 ActivityWithReceiver Deficient Encapsulation
## 2602 ActivityWithReceiver Deficient Encapsulation
## 2603 ActivityWithReceiver Deficient Encapsulation
## 2604 ActivityWithReceiver Deficient Encapsulation
## 2605 ActivityWithReceiver Deficient Encapsulation
## 2606 ActivityWithReceiver Deficient Encapsulation
## 2607 ActivityWithReceiver Deficient Encapsulation
## 2608 ActivityWithReceiver Deficient Encapsulation
## 2609 ActivityWithReceiver Deficient Encapsulation
## 2610 FragmentWithReceiver Deficient Encapsulation
## 2611 FragmentWithReceiver Deficient Encapsulation
## 2612 FragmentWithReceiver Deficient Encapsulation
## 2613 FragmentWithReceiver Deficient Encapsulation
## 2614 FragmentWithReceiver Deficient Encapsulation
## 2615 FragmentWithReceiver Deficient Encapsulation
## 2616 FragmentWithReceiver Deficient Encapsulation
## 2617 FragmentWithReceiver Deficient Encapsulation
## 2618 FragmentWithReceiver Deficient Encapsulation
## 2619 FragmentWithReceiver Deficient Encapsulation
## 2620 FragmentWithReceiver Deficient Encapsulation
## 2621 FragmentWithReceiver Deficient Encapsulation
## 2622 ResActivity Unutilized Abstraction
## 2623 ResActivity Unutilized Abstraction
## 2624 ResActivity Unutilized Abstraction
## 2625 ResActivity Unutilized Abstraction
## 2626 ResActivity Unutilized Abstraction
## 2627 ResActivity Unutilized Abstraction
## 2628 ResActivity Unutilized Abstraction
## 2629 ResActivity Unutilized Abstraction
## 2630 ResActivity Unutilized Abstraction
## 2631 ResActivity Unutilized Abstraction
## 2632 ResActivity Unutilized Abstraction
## 2633 ResActivity Unutilized Abstraction
## 2634 TracedActivity Multifaceted Abstraction
## 2635 TracedActivity Multifaceted Abstraction
## 2636 TracedActivity Multifaceted Abstraction
## 2637 TracedActivity Multifaceted Abstraction
## 2638 TracedActivity Multifaceted Abstraction
## 2639 TracedActivity Multifaceted Abstraction
## 2640 TracedActivity Multifaceted Abstraction
## 2641 TracedActivity Multifaceted Abstraction
## 2642 TracedActivity Multifaceted Abstraction
## 2643 TracedActivity Multifaceted Abstraction
## 2644 TracedActivity Multifaceted Abstraction
## 2645 TracedActivity Multifaceted Abstraction
## 2646 TracedActivity Deficient Encapsulation
## 2647 TracedActivity Deficient Encapsulation
## 2648 TracedActivity Deficient Encapsulation
## 2649 TracedActivity Deficient Encapsulation
## 2650 TracedActivity Deficient Encapsulation
## 2651 TracedActivity Deficient Encapsulation
## 2652 TracedActivity Deficient Encapsulation
## 2653 TracedActivity Deficient Encapsulation
## 2654 TracedActivity Deficient Encapsulation
## 2655 TracedActivity Deficient Encapsulation
## 2656 TracedActivity Deficient Encapsulation
## 2657 TracedActivity Deficient Encapsulation
## 2658 MyService Insufficient Modularization
## 2659 MyService Insufficient Modularization
## 2660 MyService Insufficient Modularization
## 2661 MyService Insufficient Modularization
## 2662 MyService Insufficient Modularization
## 2663 MyService Insufficient Modularization
## 2664 MyService Insufficient Modularization
## 2665 MyService Insufficient Modularization
## 2666 MyService Insufficient Modularization
## 2667 MyService Insufficient Modularization
## 2668 MyService Insufficient Modularization
## 2669 MyService Insufficient Modularization
## 2670 PostRestService Unutilized Abstraction
## 2671 PostRestService Unutilized Abstraction
## 2672 PostRestService Unutilized Abstraction
## 2673 PostRestService Unutilized Abstraction
## 2674 PostRestService Unutilized Abstraction
## 2675 PostRestService Unutilized Abstraction
## 2676 PostRestService Unutilized Abstraction
## 2677 PostRestService Unutilized Abstraction
## 2678 PostRestService Unutilized Abstraction
## 2679 PostRestService Unutilized Abstraction
## 2680 PostRestService Unutilized Abstraction
## 2681 PostRestService Unutilized Abstraction
## 2682 ApplicationInjectedActivity Unutilized Abstraction
## 2683 ApplicationInjectedActivity Unutilized Abstraction
## 2684 ApplicationInjectedActivity Unutilized Abstraction
## 2685 ApplicationInjectedActivity Unutilized Abstraction
## 2686 ApplicationInjectedActivity Unutilized Abstraction
## 2687 ApplicationInjectedActivity Unutilized Abstraction
## 2688 ApplicationInjectedActivity Unutilized Abstraction
## 2689 ApplicationInjectedActivity Unutilized Abstraction
## 2690 ApplicationInjectedActivity Unutilized Abstraction
## 2691 ApplicationInjectedActivity Unutilized Abstraction
## 2692 ApplicationInjectedActivity Unutilized Abstraction
## 2693 ApplicationInjectedActivity Unutilized Abstraction
## 2694 ValidatorParameterHelper Insufficient Modularization
## 2695 ValidatorParameterHelper Insufficient Modularization
## 2696 ValidatorParameterHelper Insufficient Modularization
## 2697 ValidatorParameterHelper Insufficient Modularization
## 2698 ValidatorParameterHelper Insufficient Modularization
## 2699 ValidatorParameterHelper Insufficient Modularization
## 2700 ValidatorParameterHelper Insufficient Modularization
## 2701 ValidatorParameterHelper Insufficient Modularization
## 2702 ValidatorParameterHelper Insufficient Modularization
## 2703 ValidatorParameterHelper Insufficient Modularization
## 2704 ValidatorParameterHelper Insufficient Modularization
## 2705 ValidatorParameterHelper Insufficient Modularization
## 2706 AndroidManifestFinder Feature Envy
## 2707 AndroidManifestFinder Feature Envy
## 2708 AndroidManifestFinder Feature Envy
## 2709 AndroidManifestFinder Feature Envy
## 2710 AndroidManifestFinder Feature Envy
## 2711 AndroidManifestFinder Feature Envy
## 2712 AndroidManifestFinder Feature Envy
## 2713 AndroidManifestFinder Feature Envy
## 2714 AndroidManifestFinder Feature Envy
## 2715 AndroidManifestFinder Feature Envy
## 2716 AndroidManifestFinder Feature Envy
## 2717 AndroidManifestFinder Feature Envy
## 2718 AndroidManifestFinder Deficient Encapsulation
## 2719 AndroidManifestFinder Deficient Encapsulation
## 2720 AndroidManifestFinder Deficient Encapsulation
## 2721 AndroidManifestFinder Deficient Encapsulation
## 2722 AndroidManifestFinder Deficient Encapsulation
## 2723 AndroidManifestFinder Deficient Encapsulation
## 2724 AndroidManifestFinder Deficient Encapsulation
## 2725 AndroidManifestFinder Deficient Encapsulation
## 2726 AndroidManifestFinder Deficient Encapsulation
## 2727 AndroidManifestFinder Deficient Encapsulation
## 2728 AndroidManifestFinder Deficient Encapsulation
## 2729 AndroidManifestFinder Deficient Encapsulation
## 2730 Formatter Cyclically-dependent Modularization
## 2731 Formatter Cyclically-dependent Modularization
## 2732 Formatter Cyclically-dependent Modularization
## 2733 Formatter Cyclically-dependent Modularization
## 2734 Formatter Cyclically-dependent Modularization
## 2735 Formatter Cyclically-dependent Modularization
## 2736 Formatter Cyclically-dependent Modularization
## 2737 Formatter Cyclically-dependent Modularization
## 2738 Formatter Cyclically-dependent Modularization
## 2739 Formatter Cyclically-dependent Modularization
## 2740 Formatter Cyclically-dependent Modularization
## 2741 Formatter Cyclically-dependent Modularization
## 2742 Formatter Cyclically-dependent Modularization
## 2743 Formatter Cyclically-dependent Modularization
## 2744 Logger Cyclically-dependent Modularization
## 2745 Logger Cyclically-dependent Modularization
## 2746 Logger Cyclically-dependent Modularization
## 2747 Logger Cyclically-dependent Modularization
## 2748 Logger Cyclically-dependent Modularization
## 2749 Logger Cyclically-dependent Modularization
## 2750 Logger Cyclically-dependent Modularization
## 2751 Logger Cyclically-dependent Modularization
## 2752 Logger Cyclically-dependent Modularization
## 2753 Logger Cyclically-dependent Modularization
## 2754 Logger Cyclically-dependent Modularization
## 2755 Logger Cyclically-dependent Modularization
## 2756 Logger Cyclically-dependent Modularization
## 2757 Logger Cyclically-dependent Modularization
## 2758 AbstractActivity Unnecessary Abstraction
## 2759 AbstractActivity Unnecessary Abstraction
## 2760 AbstractActivity Unnecessary Abstraction
## 2761 AbstractActivity Unnecessary Abstraction
## 2762 AbstractActivity Unnecessary Abstraction
## 2763 AbstractActivity Unnecessary Abstraction
## 2764 AbstractActivity Unnecessary Abstraction
## 2765 AbstractActivity Unnecessary Abstraction
## 2766 AbstractActivity Unnecessary Abstraction
## 2767 AbstractActivity Unnecessary Abstraction
## 2768 AbstractActivity Unnecessary Abstraction
## 2769 AbstractActivity Unnecessary Abstraction
## 2770 CheckedChangeHandledActivity Unutilized Abstraction
## 2771 CheckedChangeHandledActivity Unutilized Abstraction
## 2772 CheckedChangeHandledActivity Unutilized Abstraction
## 2773 CheckedChangeHandledActivity Unutilized Abstraction
## 2774 CheckedChangeHandledActivity Unutilized Abstraction
## 2775 CheckedChangeHandledActivity Unutilized Abstraction
## 2776 CheckedChangeHandledActivity Unutilized Abstraction
## 2777 CheckedChangeHandledActivity Unutilized Abstraction
## 2778 CheckedChangeHandledActivity Unutilized Abstraction
## 2779 CheckedChangeHandledActivity Unutilized Abstraction
## 2780 CheckedChangeHandledActivity Unutilized Abstraction
## 2781 CheckedChangeHandledActivity Unutilized Abstraction
## 2782 CheckedChangeHandledActivity Broken Hierarchy
## 2783 CheckedChangeHandledActivity Broken Hierarchy
## 2784 CheckedChangeHandledActivity Broken Hierarchy
## 2785 CheckedChangeHandledActivity Broken Hierarchy
## 2786 CheckedChangeHandledActivity Broken Hierarchy
## 2787 CheckedChangeHandledActivity Broken Hierarchy
## 2788 CheckedChangeHandledActivity Broken Hierarchy
## 2789 CheckedChangeHandledActivity Broken Hierarchy
## 2790 CheckedChangeHandledActivity Broken Hierarchy
## 2791 CheckedChangeHandledActivity Broken Hierarchy
## 2792 CheckedChangeHandledActivity Broken Hierarchy
## 2793 CheckedChangeHandledActivity Broken Hierarchy
## 2794 ClicksHandledActivity Unutilized Abstraction
## 2795 ClicksHandledActivity Unutilized Abstraction
## 2796 ClicksHandledActivity Unutilized Abstraction
## 2797 ClicksHandledActivity Unutilized Abstraction
## 2798 ClicksHandledActivity Unutilized Abstraction
## 2799 ClicksHandledActivity Unutilized Abstraction
## 2800 ClicksHandledActivity Unutilized Abstraction
## 2801 ClicksHandledActivity Unutilized Abstraction
## 2802 ClicksHandledActivity Unutilized Abstraction
## 2803 ClicksHandledActivity Unutilized Abstraction
## 2804 ClicksHandledActivity Unutilized Abstraction
## 2805 ClicksHandledActivity Unutilized Abstraction
## 2806 ClicksHandledActivity Broken Hierarchy
## 2807 ClicksHandledActivity Broken Hierarchy
## 2808 ClicksHandledActivity Broken Hierarchy
## 2809 ClicksHandledActivity Broken Hierarchy
## 2810 ClicksHandledActivity Broken Hierarchy
## 2811 ClicksHandledActivity Broken Hierarchy
## 2812 ClicksHandledActivity Broken Hierarchy
## 2813 ClicksHandledActivity Broken Hierarchy
## 2814 ClicksHandledActivity Broken Hierarchy
## 2815 ClicksHandledActivity Broken Hierarchy
## 2816 ClicksHandledActivity Broken Hierarchy
## 2817 ClicksHandledActivity Broken Hierarchy
## 2818 EmptyActivityWithLayout Unnecessary Abstraction
## 2819 EmptyActivityWithLayout Unnecessary Abstraction
## 2820 EmptyActivityWithLayout Unnecessary Abstraction
## 2821 EmptyActivityWithLayout Unnecessary Abstraction
## 2822 EmptyActivityWithLayout Unnecessary Abstraction
## 2823 EmptyActivityWithLayout Unnecessary Abstraction
## 2824 EmptyActivityWithLayout Unnecessary Abstraction
## 2825 EmptyActivityWithLayout Unnecessary Abstraction
## 2826 EmptyActivityWithLayout Unnecessary Abstraction
## 2827 EmptyActivityWithLayout Unnecessary Abstraction
## 2828 EmptyActivityWithLayout Unnecessary Abstraction
## 2829 EmptyActivityWithLayout Unnecessary Abstraction
## 2830 EmptyActivityWithLayout Unutilized Abstraction
## 2831 EmptyActivityWithLayout Unutilized Abstraction
## 2832 EmptyActivityWithLayout Unutilized Abstraction
## 2833 EmptyActivityWithLayout Unutilized Abstraction
## 2834 EmptyActivityWithLayout Unutilized Abstraction
## 2835 EmptyActivityWithLayout Unutilized Abstraction
## 2836 EmptyActivityWithLayout Unutilized Abstraction
## 2837 EmptyActivityWithLayout Unutilized Abstraction
## 2838 EmptyActivityWithLayout Unutilized Abstraction
## 2839 EmptyActivityWithLayout Unutilized Abstraction
## 2840 EmptyActivityWithLayout Unutilized Abstraction
## 2841 EmptyActivityWithLayout Unutilized Abstraction
## 2842 FocusChangeHandledActivity Unutilized Abstraction
## 2843 FocusChangeHandledActivity Unutilized Abstraction
## 2844 FocusChangeHandledActivity Unutilized Abstraction
## 2845 FocusChangeHandledActivity Unutilized Abstraction
## 2846 FocusChangeHandledActivity Unutilized Abstraction
## 2847 FocusChangeHandledActivity Unutilized Abstraction
## 2848 FocusChangeHandledActivity Unutilized Abstraction
## 2849 FocusChangeHandledActivity Unutilized Abstraction
## 2850 FocusChangeHandledActivity Unutilized Abstraction
## 2851 FocusChangeHandledActivity Unutilized Abstraction
## 2852 FocusChangeHandledActivity Unutilized Abstraction
## 2853 FocusChangeHandledActivity Unutilized Abstraction
## 2854 FocusChangeHandledActivity Broken Hierarchy
## 2855 FocusChangeHandledActivity Broken Hierarchy
## 2856 FocusChangeHandledActivity Broken Hierarchy
## 2857 FocusChangeHandledActivity Broken Hierarchy
## 2858 FocusChangeHandledActivity Broken Hierarchy
## 2859 FocusChangeHandledActivity Broken Hierarchy
## 2860 FocusChangeHandledActivity Broken Hierarchy
## 2861 FocusChangeHandledActivity Broken Hierarchy
## 2862 FocusChangeHandledActivity Broken Hierarchy
## 2863 FocusChangeHandledActivity Broken Hierarchy
## 2864 FocusChangeHandledActivity Broken Hierarchy
## 2865 FocusChangeHandledActivity Broken Hierarchy
## 2866 FromHtmlActivity Unnecessary Abstraction
## 2867 FromHtmlActivity Unnecessary Abstraction
## 2868 FromHtmlActivity Unnecessary Abstraction
## 2869 FromHtmlActivity Unnecessary Abstraction
## 2870 FromHtmlActivity Unnecessary Abstraction
## 2871 FromHtmlActivity Unnecessary Abstraction
## 2872 FromHtmlActivity Unnecessary Abstraction
## 2873 FromHtmlActivity Unnecessary Abstraction
## 2874 FromHtmlActivity Unnecessary Abstraction
## 2875 FromHtmlActivity Unnecessary Abstraction
## 2876 FromHtmlActivity Unnecessary Abstraction
## 2877 FromHtmlActivity Unnecessary Abstraction
## 2878 FromHtmlActivity Unutilized Abstraction
## 2879 FromHtmlActivity Unutilized Abstraction
## 2880 FromHtmlActivity Unutilized Abstraction
## 2881 FromHtmlActivity Unutilized Abstraction
## 2882 FromHtmlActivity Unutilized Abstraction
## 2883 FromHtmlActivity Unutilized Abstraction
## 2884 FromHtmlActivity Unutilized Abstraction
## 2885 FromHtmlActivity Unutilized Abstraction
## 2886 FromHtmlActivity Unutilized Abstraction
## 2887 FromHtmlActivity Unutilized Abstraction
## 2888 FromHtmlActivity Unutilized Abstraction
## 2889 FromHtmlActivity Unutilized Abstraction
## 2890 ItemClicksHandledActivity Unutilized Abstraction
## 2891 ItemClicksHandledActivity Unutilized Abstraction
## 2892 ItemClicksHandledActivity Unutilized Abstraction
## 2893 ItemClicksHandledActivity Unutilized Abstraction
## 2894 ItemClicksHandledActivity Unutilized Abstraction
## 2895 ItemClicksHandledActivity Unutilized Abstraction
## 2896 ItemClicksHandledActivity Unutilized Abstraction
## 2897 ItemClicksHandledActivity Unutilized Abstraction
## 2898 ItemClicksHandledActivity Unutilized Abstraction
## 2899 ItemClicksHandledActivity Unutilized Abstraction
## 2900 ItemClicksHandledActivity Unutilized Abstraction
## 2901 ItemClicksHandledActivity Unutilized Abstraction
## 2902 LongClicksHandledActivity Unutilized Abstraction
## 2903 LongClicksHandledActivity Unutilized Abstraction
## 2904 LongClicksHandledActivity Unutilized Abstraction
## 2905 LongClicksHandledActivity Unutilized Abstraction
## 2906 LongClicksHandledActivity Unutilized Abstraction
## 2907 LongClicksHandledActivity Unutilized Abstraction
## 2908 LongClicksHandledActivity Unutilized Abstraction
## 2909 LongClicksHandledActivity Unutilized Abstraction
## 2910 LongClicksHandledActivity Unutilized Abstraction
## 2911 LongClicksHandledActivity Unutilized Abstraction
## 2912 LongClicksHandledActivity Unutilized Abstraction
## 2913 LongClicksHandledActivity Unutilized Abstraction
## 2914 LongClicksHandledActivity Broken Hierarchy
## 2915 LongClicksHandledActivity Broken Hierarchy
## 2916 LongClicksHandledActivity Broken Hierarchy
## 2917 LongClicksHandledActivity Broken Hierarchy
## 2918 LongClicksHandledActivity Broken Hierarchy
## 2919 LongClicksHandledActivity Broken Hierarchy
## 2920 LongClicksHandledActivity Broken Hierarchy
## 2921 LongClicksHandledActivity Broken Hierarchy
## 2922 LongClicksHandledActivity Broken Hierarchy
## 2923 LongClicksHandledActivity Broken Hierarchy
## 2924 LongClicksHandledActivity Broken Hierarchy
## 2925 LongClicksHandledActivity Broken Hierarchy
## 2926 PageChangeListenerActivity Unutilized Abstraction
## 2927 PageChangeListenerActivity Unutilized Abstraction
## 2928 PageChangeListenerActivity Unutilized Abstraction
## 2929 PageChangeListenerActivity Unutilized Abstraction
## 2930 PageChangeListenerActivity Unutilized Abstraction
## 2931 PageChangeListenerActivity Unutilized Abstraction
## 2932 PageChangeListenerActivity Unutilized Abstraction
## 2933 PageChangeListenerActivity Unutilized Abstraction
## 2934 PageChangeListenerActivity Unutilized Abstraction
## 2935 PageChangeListenerActivity Unutilized Abstraction
## 2936 PageChangeListenerActivity Unutilized Abstraction
## 2937 PageChangeListenerActivity Unutilized Abstraction
## 2938 PageChangeListenerActivity Deficient Encapsulation
## 2939 PageChangeListenerActivity Deficient Encapsulation
## 2940 PageChangeListenerActivity Deficient Encapsulation
## 2941 PageChangeListenerActivity Deficient Encapsulation
## 2942 PageChangeListenerActivity Deficient Encapsulation
## 2943 PageChangeListenerActivity Deficient Encapsulation
## 2944 PageChangeListenerActivity Deficient Encapsulation
## 2945 PageChangeListenerActivity Deficient Encapsulation
## 2946 PageChangeListenerActivity Deficient Encapsulation
## 2947 PageChangeListenerActivity Deficient Encapsulation
## 2948 PageChangeListenerActivity Deficient Encapsulation
## 2949 PageChangeListenerActivity Deficient Encapsulation
## 2950 SeekBarChangeListenedActivity Unutilized Abstraction
## 2951 SeekBarChangeListenedActivity Unutilized Abstraction
## 2952 SeekBarChangeListenedActivity Unutilized Abstraction
## 2953 SeekBarChangeListenedActivity Unutilized Abstraction
## 2954 SeekBarChangeListenedActivity Unutilized Abstraction
## 2955 SeekBarChangeListenedActivity Unutilized Abstraction
## 2956 SeekBarChangeListenedActivity Unutilized Abstraction
## 2957 SeekBarChangeListenedActivity Unutilized Abstraction
## 2958 SeekBarChangeListenedActivity Unutilized Abstraction
## 2959 SeekBarChangeListenedActivity Unutilized Abstraction
## 2960 SeekBarChangeListenedActivity Unutilized Abstraction
## 2961 SeekBarChangeListenedActivity Unutilized Abstraction
## 2962 SSLConnection Unutilized Abstraction
## 2963 SSLConnection Unutilized Abstraction
## 2964 SSLConnection Unutilized Abstraction
## 2965 SSLConnection Unutilized Abstraction
## 2966 SSLConnection Unutilized Abstraction
## 2967 SSLConnection Unutilized Abstraction
## 2968 SSLConnection Unutilized Abstraction
## 2969 SSLConnection Unutilized Abstraction
## 2970 SSLConnection Unutilized Abstraction
## 2971 SSLConnection Unutilized Abstraction
## 2972 SSLConnection Unutilized Abstraction
## 2973 SSLConnection Unutilized Abstraction
## 2974 TextWatchedActivity Multifaceted Abstraction
## 2975 TextWatchedActivity Multifaceted Abstraction
## 2976 TextWatchedActivity Multifaceted Abstraction
## 2977 TextWatchedActivity Multifaceted Abstraction
## 2978 TextWatchedActivity Multifaceted Abstraction
## 2979 TextWatchedActivity Multifaceted Abstraction
## 2980 TextWatchedActivity Multifaceted Abstraction
## 2981 TextWatchedActivity Multifaceted Abstraction
## 2982 TextWatchedActivity Multifaceted Abstraction
## 2983 TextWatchedActivity Multifaceted Abstraction
## 2984 TextWatchedActivity Multifaceted Abstraction
## 2985 TextWatchedActivity Multifaceted Abstraction
## 2986 TextWatchedActivity Unutilized Abstraction
## 2987 TextWatchedActivity Unutilized Abstraction
## 2988 TextWatchedActivity Unutilized Abstraction
## 2989 TextWatchedActivity Unutilized Abstraction
## 2990 TextWatchedActivity Unutilized Abstraction
## 2991 TextWatchedActivity Unutilized Abstraction
## 2992 TextWatchedActivity Unutilized Abstraction
## 2993 TextWatchedActivity Unutilized Abstraction
## 2994 TextWatchedActivity Unutilized Abstraction
## 2995 TextWatchedActivity Unutilized Abstraction
## 2996 TextWatchedActivity Unutilized Abstraction
## 2997 TextWatchedActivity Unutilized Abstraction
## 2998 ThreadActivity Deficient Encapsulation
## 2999 ThreadActivity Deficient Encapsulation
## 3000 ThreadActivity Deficient Encapsulation
## 3001 ThreadActivity Deficient Encapsulation
## 3002 ThreadActivity Deficient Encapsulation
## 3003 ThreadActivity Deficient Encapsulation
## 3004 ThreadActivity Deficient Encapsulation
## 3005 ThreadActivity Deficient Encapsulation
## 3006 ThreadActivity Deficient Encapsulation
## 3007 ThreadActivity Deficient Encapsulation
## 3008 ThreadActivity Deficient Encapsulation
## 3009 ThreadActivity Deficient Encapsulation
## 3010 TouchesHandledActivity Unutilized Abstraction
## 3011 TouchesHandledActivity Unutilized Abstraction
## 3012 TouchesHandledActivity Unutilized Abstraction
## 3013 TouchesHandledActivity Unutilized Abstraction
## 3014 TouchesHandledActivity Unutilized Abstraction
## 3015 TouchesHandledActivity Unutilized Abstraction
## 3016 TouchesHandledActivity Unutilized Abstraction
## 3017 TouchesHandledActivity Unutilized Abstraction
## 3018 TouchesHandledActivity Unutilized Abstraction
## 3019 TouchesHandledActivity Unutilized Abstraction
## 3020 TouchesHandledActivity Unutilized Abstraction
## 3021 TouchesHandledActivity Unutilized Abstraction
## 3022 TouchesHandledActivity Broken Hierarchy
## 3023 TouchesHandledActivity Broken Hierarchy
## 3024 TouchesHandledActivity Broken Hierarchy
## 3025 TouchesHandledActivity Broken Hierarchy
## 3026 TouchesHandledActivity Broken Hierarchy
## 3027 TouchesHandledActivity Broken Hierarchy
## 3028 TouchesHandledActivity Broken Hierarchy
## 3029 TouchesHandledActivity Broken Hierarchy
## 3030 TouchesHandledActivity Broken Hierarchy
## 3031 TouchesHandledActivity Broken Hierarchy
## 3032 TouchesHandledActivity Broken Hierarchy
## 3033 TouchesHandledActivity Broken Hierarchy
## 3034 TransactionalActivity Unutilized Abstraction
## 3035 TransactionalActivity Unutilized Abstraction
## 3036 TransactionalActivity Unutilized Abstraction
## 3037 TransactionalActivity Unutilized Abstraction
## 3038 TransactionalActivity Unutilized Abstraction
## 3039 TransactionalActivity Unutilized Abstraction
## 3040 TransactionalActivity Unutilized Abstraction
## 3041 TransactionalActivity Unutilized Abstraction
## 3042 TransactionalActivity Unutilized Abstraction
## 3043 TransactionalActivity Unutilized Abstraction
## 3044 TransactionalActivity Unutilized Abstraction
## 3045 TransactionalActivity Unutilized Abstraction
## 3046 ViewsInjectedActivity Unutilized Abstraction
## 3047 ViewsInjectedActivity Unutilized Abstraction
## 3048 ViewsInjectedActivity Unutilized Abstraction
## 3049 ViewsInjectedActivity Unutilized Abstraction
## 3050 ViewsInjectedActivity Unutilized Abstraction
## 3051 ViewsInjectedActivity Unutilized Abstraction
## 3052 ViewsInjectedActivity Unutilized Abstraction
## 3053 ViewsInjectedActivity Unutilized Abstraction
## 3054 ViewsInjectedActivity Unutilized Abstraction
## 3055 ViewsInjectedActivity Unutilized Abstraction
## 3056 ViewsInjectedActivity Unutilized Abstraction
## 3057 ViewsInjectedActivity Unutilized Abstraction
## 3058 AfterExtrasActivity Unutilized Abstraction
## 3059 AfterExtrasActivity Unutilized Abstraction
## 3060 AfterExtrasActivity Unutilized Abstraction
## 3061 AfterExtrasActivity Unutilized Abstraction
## 3062 AfterExtrasActivity Unutilized Abstraction
## 3063 AfterExtrasActivity Unutilized Abstraction
## 3064 AfterExtrasActivity Unutilized Abstraction
## 3065 AfterExtrasActivity Unutilized Abstraction
## 3066 AfterExtrasActivity Unutilized Abstraction
## 3067 AfterExtrasActivity Unutilized Abstraction
## 3068 AfterExtrasActivity Unutilized Abstraction
## 3069 AfterExtrasActivity Unutilized Abstraction
## 3070 AfterExtrasActivity Deficient Encapsulation
## 3071 AfterExtrasActivity Deficient Encapsulation
## 3072 AfterExtrasActivity Deficient Encapsulation
## 3073 AfterExtrasActivity Deficient Encapsulation
## 3074 AfterExtrasActivity Deficient Encapsulation
## 3075 AfterExtrasActivity Deficient Encapsulation
## 3076 AfterExtrasActivity Deficient Encapsulation
## 3077 AfterExtrasActivity Deficient Encapsulation
## 3078 AfterExtrasActivity Deficient Encapsulation
## 3079 AfterExtrasActivity Deficient Encapsulation
## 3080 AfterExtrasActivity Deficient Encapsulation
## 3081 AfterExtrasActivity Deficient Encapsulation
## 3082 AfterInjectActivity Unutilized Abstraction
## 3083 AfterInjectActivity Unutilized Abstraction
## 3084 AfterInjectActivity Unutilized Abstraction
## 3085 AfterInjectActivity Unutilized Abstraction
## 3086 AfterInjectActivity Unutilized Abstraction
## 3087 AfterInjectActivity Unutilized Abstraction
## 3088 AfterInjectActivity Unutilized Abstraction
## 3089 AfterInjectActivity Unutilized Abstraction
## 3090 AfterInjectActivity Unutilized Abstraction
## 3091 AfterInjectActivity Unutilized Abstraction
## 3092 AfterInjectActivity Unutilized Abstraction
## 3093 AfterInjectActivity Unutilized Abstraction
## 3094 AfterInjectActivity Deficient Encapsulation
## 3095 AfterInjectActivity Deficient Encapsulation
## 3096 AfterInjectActivity Deficient Encapsulation
## 3097 AfterInjectActivity Deficient Encapsulation
## 3098 AfterInjectActivity Deficient Encapsulation
## 3099 AfterInjectActivity Deficient Encapsulation
## 3100 AfterInjectActivity Deficient Encapsulation
## 3101 AfterInjectActivity Deficient Encapsulation
## 3102 AfterInjectActivity Deficient Encapsulation
## 3103 AfterInjectActivity Deficient Encapsulation
## 3104 AfterInjectActivity Deficient Encapsulation
## 3105 AfterInjectActivity Deficient Encapsulation
## 3106 AfterInjectBean Deficient Encapsulation
## 3107 AfterInjectBean Deficient Encapsulation
## 3108 AfterInjectBean Deficient Encapsulation
## 3109 AfterInjectBean Deficient Encapsulation
## 3110 AfterInjectBean Deficient Encapsulation
## 3111 AfterInjectBean Deficient Encapsulation
## 3112 AfterInjectBean Deficient Encapsulation
## 3113 AfterInjectBean Deficient Encapsulation
## 3114 AfterInjectBean Deficient Encapsulation
## 3115 AfterInjectBean Deficient Encapsulation
## 3116 AfterInjectBean Deficient Encapsulation
## 3117 AfterInjectBean Deficient Encapsulation
## 3118 AfterViewsActivity Unutilized Abstraction
## 3119 AfterViewsActivity Unutilized Abstraction
## 3120 AfterViewsActivity Unutilized Abstraction
## 3121 AfterViewsActivity Unutilized Abstraction
## 3122 AfterViewsActivity Unutilized Abstraction
## 3123 AfterViewsActivity Unutilized Abstraction
## 3124 AfterViewsActivity Unutilized Abstraction
## 3125 AfterViewsActivity Unutilized Abstraction
## 3126 AfterViewsActivity Unutilized Abstraction
## 3127 AfterViewsActivity Unutilized Abstraction
## 3128 AfterViewsActivity Unutilized Abstraction
## 3129 AfterViewsActivity Unutilized Abstraction
## 3130 AfterViewsActivity Deficient Encapsulation
## 3131 AfterViewsActivity Deficient Encapsulation
## 3132 AfterViewsActivity Deficient Encapsulation
## 3133 AfterViewsActivity Deficient Encapsulation
## 3134 AfterViewsActivity Deficient Encapsulation
## 3135 AfterViewsActivity Deficient Encapsulation
## 3136 AfterViewsActivity Deficient Encapsulation
## 3137 AfterViewsActivity Deficient Encapsulation
## 3138 AfterViewsActivity Deficient Encapsulation
## 3139 AfterViewsActivity Deficient Encapsulation
## 3140 AfterViewsActivity Deficient Encapsulation
## 3141 AfterViewsActivity Deficient Encapsulation
## 3142 BeanInjectedActivity Multifaceted Abstraction
## 3143 BeanInjectedActivity Multifaceted Abstraction
## 3144 BeanInjectedActivity Multifaceted Abstraction
## 3145 BeanInjectedActivity Multifaceted Abstraction
## 3146 BeanInjectedActivity Multifaceted Abstraction
## 3147 BeanInjectedActivity Multifaceted Abstraction
## 3148 BeanInjectedActivity Multifaceted Abstraction
## 3149 BeanInjectedActivity Multifaceted Abstraction
## 3150 BeanInjectedActivity Multifaceted Abstraction
## 3151 BeanInjectedActivity Multifaceted Abstraction
## 3152 BeanInjectedActivity Multifaceted Abstraction
## 3153 BeanInjectedActivity Multifaceted Abstraction
## 3154 BeanInjectedActivity Unutilized Abstraction
## 3155 BeanInjectedActivity Unutilized Abstraction
## 3156 BeanInjectedActivity Unutilized Abstraction
## 3157 BeanInjectedActivity Unutilized Abstraction
## 3158 BeanInjectedActivity Unutilized Abstraction
## 3159 BeanInjectedActivity Unutilized Abstraction
## 3160 BeanInjectedActivity Unutilized Abstraction
## 3161 BeanInjectedActivity Unutilized Abstraction
## 3162 BeanInjectedActivity Unutilized Abstraction
## 3163 BeanInjectedActivity Unutilized Abstraction
## 3164 BeanInjectedActivity Unutilized Abstraction
## 3165 BeanInjectedActivity Unutilized Abstraction
## 3166 BeanInjectedActivity Deficient Encapsulation
## 3167 BeanInjectedActivity Deficient Encapsulation
## 3168 BeanInjectedActivity Deficient Encapsulation
## 3169 BeanInjectedActivity Deficient Encapsulation
## 3170 BeanInjectedActivity Deficient Encapsulation
## 3171 BeanInjectedActivity Deficient Encapsulation
## 3172 BeanInjectedActivity Deficient Encapsulation
## 3173 BeanInjectedActivity Deficient Encapsulation
## 3174 BeanInjectedActivity Deficient Encapsulation
## 3175 BeanInjectedActivity Deficient Encapsulation
## 3176 BeanInjectedActivity Deficient Encapsulation
## 3177 BeanInjectedActivity Deficient Encapsulation
## 3178 SomeBean Deficient Encapsulation
## 3179 SomeBean Deficient Encapsulation
## 3180 SomeBean Deficient Encapsulation
## 3181 SomeBean Deficient Encapsulation
## 3182 SomeBean Deficient Encapsulation
## 3183 SomeBean Deficient Encapsulation
## 3184 SomeBean Deficient Encapsulation
## 3185 SomeBean Deficient Encapsulation
## 3186 SomeBean Deficient Encapsulation
## 3187 SomeBean Deficient Encapsulation
## 3188 SomeBean Deficient Encapsulation
## 3189 SomeBean Deficient Encapsulation
## 3190 SomeSingleton Unnecessary Abstraction
## 3191 SomeSingleton Unnecessary Abstraction
## 3192 SomeSingleton Unnecessary Abstraction
## 3193 SomeSingleton Unnecessary Abstraction
## 3194 SomeSingleton Unnecessary Abstraction
## 3195 SomeSingleton Unnecessary Abstraction
## 3196 SomeSingleton Unnecessary Abstraction
## 3197 SomeSingleton Unnecessary Abstraction
## 3198 SomeSingleton Unnecessary Abstraction
## 3199 SomeSingleton Unnecessary Abstraction
## 3200 SomeSingleton Unnecessary Abstraction
## 3201 SomeSingleton Unnecessary Abstraction
## 3202 SomeSingleton Deficient Encapsulation
## 3203 SomeSingleton Deficient Encapsulation
## 3204 SomeSingleton Deficient Encapsulation
## 3205 SomeSingleton Deficient Encapsulation
## 3206 SomeSingleton Deficient Encapsulation
## 3207 SomeSingleton Deficient Encapsulation
## 3208 SomeSingleton Deficient Encapsulation
## 3209 SomeSingleton Deficient Encapsulation
## 3210 SomeSingleton Deficient Encapsulation
## 3211 SomeSingleton Deficient Encapsulation
## 3212 SomeSingleton Deficient Encapsulation
## 3213 SomeSingleton Deficient Encapsulation
## 3214 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3215 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3216 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3217 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3218 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3219 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3220 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3221 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3222 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3223 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3224 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3225 ForceLayoutInjectedListFragment Unnecessary Abstraction
## 3226 MyFragmentActivity Unutilized Abstraction
## 3227 MyFragmentActivity Unutilized Abstraction
## 3228 MyFragmentActivity Unutilized Abstraction
## 3229 MyFragmentActivity Unutilized Abstraction
## 3230 MyFragmentActivity Unutilized Abstraction
## 3231 MyFragmentActivity Unutilized Abstraction
## 3232 MyFragmentActivity Unutilized Abstraction
## 3233 MyFragmentActivity Unutilized Abstraction
## 3234 MyFragmentActivity Unutilized Abstraction
## 3235 MyFragmentActivity Unutilized Abstraction
## 3236 MyFragmentActivity Unutilized Abstraction
## 3237 MyFragmentActivity Unutilized Abstraction
## 3238 MyFragmentActivity Deficient Encapsulation
## 3239 MyFragmentActivity Deficient Encapsulation
## 3240 MyFragmentActivity Deficient Encapsulation
## 3241 MyFragmentActivity Deficient Encapsulation
## 3242 MyFragmentActivity Deficient Encapsulation
## 3243 MyFragmentActivity Deficient Encapsulation
## 3244 MyFragmentActivity Deficient Encapsulation
## 3245 MyFragmentActivity Deficient Encapsulation
## 3246 MyFragmentActivity Deficient Encapsulation
## 3247 MyFragmentActivity Deficient Encapsulation
## 3248 MyFragmentActivity Deficient Encapsulation
## 3249 MyFragmentActivity Deficient Encapsulation
## 3250 MyListFragment Unutilized Abstraction
## 3251 MyListFragment Unutilized Abstraction
## 3252 MyListFragment Unutilized Abstraction
## 3253 MyListFragment Unutilized Abstraction
## 3254 MyListFragment Unutilized Abstraction
## 3255 MyListFragment Unutilized Abstraction
## 3256 MyListFragment Unutilized Abstraction
## 3257 MyListFragment Unutilized Abstraction
## 3258 MyListFragment Unutilized Abstraction
## 3259 MyListFragment Unutilized Abstraction
## 3260 MyListFragment Unutilized Abstraction
## 3261 MyListFragment Unutilized Abstraction
## 3262 MySupportFragmentActivity Unnecessary Abstraction
## 3263 MySupportFragmentActivity Unnecessary Abstraction
## 3264 MySupportFragmentActivity Unnecessary Abstraction
## 3265 MySupportFragmentActivity Unnecessary Abstraction
## 3266 MySupportFragmentActivity Unnecessary Abstraction
## 3267 MySupportFragmentActivity Unnecessary Abstraction
## 3268 MySupportFragmentActivity Unnecessary Abstraction
## 3269 MySupportFragmentActivity Unnecessary Abstraction
## 3270 MySupportFragmentActivity Unnecessary Abstraction
## 3271 MySupportFragmentActivity Unnecessary Abstraction
## 3272 MySupportFragmentActivity Unnecessary Abstraction
## 3273 MySupportFragmentActivity Unnecessary Abstraction
## 3274 MySupportFragmentActivity Unutilized Abstraction
## 3275 MySupportFragmentActivity Unutilized Abstraction
## 3276 MySupportFragmentActivity Unutilized Abstraction
## 3277 MySupportFragmentActivity Unutilized Abstraction
## 3278 MySupportFragmentActivity Unutilized Abstraction
## 3279 MySupportFragmentActivity Unutilized Abstraction
## 3280 MySupportFragmentActivity Unutilized Abstraction
## 3281 MySupportFragmentActivity Unutilized Abstraction
## 3282 MySupportFragmentActivity Unutilized Abstraction
## 3283 MySupportFragmentActivity Unutilized Abstraction
## 3284 MySupportFragmentActivity Unutilized Abstraction
## 3285 MySupportFragmentActivity Unutilized Abstraction
## 3286 MySupportFragmentActivity Deficient Encapsulation
## 3287 MySupportFragmentActivity Deficient Encapsulation
## 3288 MySupportFragmentActivity Deficient Encapsulation
## 3289 MySupportFragmentActivity Deficient Encapsulation
## 3290 MySupportFragmentActivity Deficient Encapsulation
## 3291 MySupportFragmentActivity Deficient Encapsulation
## 3292 MySupportFragmentActivity Deficient Encapsulation
## 3293 MySupportFragmentActivity Deficient Encapsulation
## 3294 MySupportFragmentActivity Deficient Encapsulation
## 3295 MySupportFragmentActivity Deficient Encapsulation
## 3296 MySupportFragmentActivity Deficient Encapsulation
## 3297 MySupportFragmentActivity Deficient Encapsulation
## 3298 MySupportFragmentActivity Broken Modularization
## 3299 MySupportFragmentActivity Broken Modularization
## 3300 MySupportFragmentActivity Broken Modularization
## 3301 MySupportFragmentActivity Broken Modularization
## 3302 MySupportFragmentActivity Broken Modularization
## 3303 MySupportFragmentActivity Broken Modularization
## 3304 MySupportFragmentActivity Broken Modularization
## 3305 MySupportFragmentActivity Broken Modularization
## 3306 MySupportFragmentActivity Broken Modularization
## 3307 MySupportFragmentActivity Broken Modularization
## 3308 MySupportFragmentActivity Broken Modularization
## 3309 MySupportFragmentActivity Broken Modularization
## 3310 ReceiverWithActions Deficient Encapsulation
## 3311 ReceiverWithActions Deficient Encapsulation
## 3312 ReceiverWithActions Deficient Encapsulation
## 3313 ReceiverWithActions Deficient Encapsulation
## 3314 ReceiverWithActions Deficient Encapsulation
## 3315 ReceiverWithActions Deficient Encapsulation
## 3316 ReceiverWithActions Deficient Encapsulation
## 3317 ReceiverWithActions Deficient Encapsulation
## 3318 ReceiverWithActions Deficient Encapsulation
## 3319 ReceiverWithActions Deficient Encapsulation
## 3320 ReceiverWithActions Deficient Encapsulation
## 3321 ReceiverWithActions Deficient Encapsulation
## 3322 CustomButton Deficient Encapsulation
## 3323 CustomButton Deficient Encapsulation
## 3324 CustomButton Deficient Encapsulation
## 3325 CustomButton Deficient Encapsulation
## 3326 CustomButton Deficient Encapsulation
## 3327 CustomButton Deficient Encapsulation
## 3328 CustomButton Deficient Encapsulation
## 3329 CustomButton Deficient Encapsulation
## 3330 CustomButton Deficient Encapsulation
## 3331 CustomButton Deficient Encapsulation
## 3332 CustomButton Deficient Encapsulation
## 3333 CustomButton Deficient Encapsulation
## 3334 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3335 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3336 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3337 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3338 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3339 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3340 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3341 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3342 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3343 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3344 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3345 InstanceStateAfterInjectActivity Unutilized Abstraction
## 3346 SaveInstanceStateActivity Broken Modularization
## 3347 SaveInstanceStateActivity Broken Modularization
## 3348 SaveInstanceStateActivity Broken Modularization
## 3349 SaveInstanceStateActivity Broken Modularization
## 3350 SaveInstanceStateActivity Broken Modularization
## 3351 SaveInstanceStateActivity Broken Modularization
## 3352 SaveInstanceStateActivity Broken Modularization
## 3353 SaveInstanceStateActivity Broken Modularization
## 3354 SaveInstanceStateActivity Broken Modularization
## 3355 SaveInstanceStateActivity Broken Modularization
## 3356 SaveInstanceStateActivity Broken Modularization
## 3357 SaveInstanceStateActivity Broken Modularization
## 3358 InjectMenuActivity Unutilized Abstraction
## 3359 InjectMenuActivity Unutilized Abstraction
## 3360 InjectMenuActivity Unutilized Abstraction
## 3361 InjectMenuActivity Unutilized Abstraction
## 3362 InjectMenuActivity Unutilized Abstraction
## 3363 InjectMenuActivity Unutilized Abstraction
## 3364 InjectMenuActivity Unutilized Abstraction
## 3365 InjectMenuActivity Unutilized Abstraction
## 3366 InjectMenuActivity Unutilized Abstraction
## 3367 InjectMenuActivity Unutilized Abstraction
## 3368 InjectMenuActivity Unutilized Abstraction
## 3369 InjectMenuActivity Unutilized Abstraction
## 3370 OptionsMenuActivity Multifaceted Abstraction
## 3371 OptionsMenuActivity Multifaceted Abstraction
## 3372 OptionsMenuActivity Multifaceted Abstraction
## 3373 OptionsMenuActivity Multifaceted Abstraction
## 3374 OptionsMenuActivity Multifaceted Abstraction
## 3375 OptionsMenuActivity Multifaceted Abstraction
## 3376 OptionsMenuActivity Multifaceted Abstraction
## 3377 OptionsMenuActivity Multifaceted Abstraction
## 3378 OptionsMenuActivity Multifaceted Abstraction
## 3379 OptionsMenuActivity Multifaceted Abstraction
## 3380 OptionsMenuActivity Multifaceted Abstraction
## 3381 OptionsMenuActivity Multifaceted Abstraction
## 3382 NonConfigurationActivity Unutilized Abstraction
## 3383 NonConfigurationActivity Unutilized Abstraction
## 3384 NonConfigurationActivity Unutilized Abstraction
## 3385 NonConfigurationActivity Unutilized Abstraction
## 3386 NonConfigurationActivity Unutilized Abstraction
## 3387 NonConfigurationActivity Unutilized Abstraction
## 3388 NonConfigurationActivity Unutilized Abstraction
## 3389 NonConfigurationActivity Unutilized Abstraction
## 3390 NonConfigurationActivity Unutilized Abstraction
## 3391 NonConfigurationActivity Unutilized Abstraction
## 3392 NonConfigurationActivity Unutilized Abstraction
## 3393 NonConfigurationActivity Unutilized Abstraction
## 3394 PreferenceAnnotationsFragment Unutilized Abstraction
## 3395 PreferenceAnnotationsFragment Unutilized Abstraction
## 3396 PreferenceAnnotationsFragment Unutilized Abstraction
## 3397 PreferenceAnnotationsFragment Unutilized Abstraction
## 3398 PreferenceAnnotationsFragment Unutilized Abstraction
## 3399 PreferenceAnnotationsFragment Unutilized Abstraction
## 3400 PreferenceAnnotationsFragment Unutilized Abstraction
## 3401 PreferenceAnnotationsFragment Unutilized Abstraction
## 3402 PreferenceAnnotationsFragment Unutilized Abstraction
## 3403 PreferenceAnnotationsFragment Unutilized Abstraction
## 3404 PreferenceEventsHandledActivity Unutilized Abstraction
## 3405 PreferenceEventsHandledActivity Unutilized Abstraction
## 3406 PreferenceEventsHandledActivity Unutilized Abstraction
## 3407 PreferenceEventsHandledActivity Unutilized Abstraction
## 3408 PreferenceEventsHandledActivity Unutilized Abstraction
## 3409 PreferenceEventsHandledActivity Unutilized Abstraction
## 3410 PreferenceEventsHandledActivity Unutilized Abstraction
## 3411 PreferenceEventsHandledActivity Unutilized Abstraction
## 3412 PreferenceEventsHandledActivity Unutilized Abstraction
## 3413 PreferenceEventsHandledActivity Unutilized Abstraction
## 3414 PreferenceEventsHandledActivity Unutilized Abstraction
## 3415 PreferenceEventsHandledActivity Unutilized Abstraction
## 3416 PreferenceHeadersActivity Unutilized Abstraction
## 3417 PreferenceHeadersActivity Unutilized Abstraction
## 3418 PreferenceHeadersActivity Unutilized Abstraction
## 3419 PreferenceHeadersActivity Unutilized Abstraction
## 3420 PreferenceHeadersActivity Unutilized Abstraction
## 3421 PreferenceHeadersActivity Unutilized Abstraction
## 3422 PreferenceHeadersActivity Unutilized Abstraction
## 3423 PreferenceHeadersActivity Unutilized Abstraction
## 3424 PreferenceHeadersActivity Unutilized Abstraction
## 3425 PreferenceHeadersActivity Unutilized Abstraction
## 3426 PreferenceScreenActivity Unnecessary Abstraction
## 3427 PreferenceScreenActivity Unnecessary Abstraction
## 3428 PreferenceScreenActivity Unnecessary Abstraction
## 3429 PreferenceScreenActivity Unnecessary Abstraction
## 3430 PreferenceScreenActivity Unnecessary Abstraction
## 3431 PreferenceScreenActivity Unnecessary Abstraction
## 3432 PreferenceScreenActivity Unnecessary Abstraction
## 3433 PreferenceScreenActivity Unnecessary Abstraction
## 3434 PreferenceScreenActivity Unnecessary Abstraction
## 3435 PreferenceScreenActivity Unnecessary Abstraction
## 3436 PreferenceScreenActivity Unnecessary Abstraction
## 3437 PreferenceScreenActivity Unnecessary Abstraction
## 3438 PreferenceScreenActivity Unutilized Abstraction
## 3439 PreferenceScreenActivity Unutilized Abstraction
## 3440 PreferenceScreenActivity Unutilized Abstraction
## 3441 PreferenceScreenActivity Unutilized Abstraction
## 3442 PreferenceScreenActivity Unutilized Abstraction
## 3443 PreferenceScreenActivity Unutilized Abstraction
## 3444 PreferenceScreenActivity Unutilized Abstraction
## 3445 PreferenceScreenActivity Unutilized Abstraction
## 3446 PreferenceScreenActivity Unutilized Abstraction
## 3447 PreferenceScreenActivity Unutilized Abstraction
## 3448 PreferenceScreenActivity Unutilized Abstraction
## 3449 PreferenceScreenActivity Unutilized Abstraction
## 3450 PreferenceScreenFragment Unnecessary Abstraction
## 3451 PreferenceScreenFragment Unnecessary Abstraction
## 3452 PreferenceScreenFragment Unnecessary Abstraction
## 3453 PreferenceScreenFragment Unnecessary Abstraction
## 3454 PreferenceScreenFragment Unnecessary Abstraction
## 3455 PreferenceScreenFragment Unnecessary Abstraction
## 3456 PreferenceScreenFragment Unnecessary Abstraction
## 3457 PreferenceScreenFragment Unnecessary Abstraction
## 3458 PreferenceScreenFragment Unnecessary Abstraction
## 3459 PreferenceScreenFragment Unnecessary Abstraction
## 3460 PreferenceScreenFragment Unutilized Abstraction
## 3461 PreferenceScreenFragment Unutilized Abstraction
## 3462 PreferenceScreenFragment Unutilized Abstraction
## 3463 PreferenceScreenFragment Unutilized Abstraction
## 3464 PreferenceScreenFragment Unutilized Abstraction
## 3465 PreferenceScreenFragment Unutilized Abstraction
## 3466 PreferenceScreenFragment Unutilized Abstraction
## 3467 PreferenceScreenFragment Unutilized Abstraction
## 3468 PreferenceScreenFragment Unutilized Abstraction
## 3469 PreferenceScreenFragment Unutilized Abstraction
## 3470 PrefsActivity Unutilized Abstraction
## 3471 PrefsActivity Unutilized Abstraction
## 3472 PrefsActivity Unutilized Abstraction
## 3473 PrefsActivity Unutilized Abstraction
## 3474 PrefsActivity Unutilized Abstraction
## 3475 PrefsActivity Unutilized Abstraction
## 3476 PrefsActivity Unutilized Abstraction
## 3477 PrefsActivity Unutilized Abstraction
## 3478 PrefsActivity Unutilized Abstraction
## 3479 PrefsActivity Unutilized Abstraction
## 3480 PrefsActivity Unutilized Abstraction
## 3481 PrefsActivity Unutilized Abstraction
## 3482 ActivityWithReceiver Deficient Encapsulation
## 3483 ActivityWithReceiver Deficient Encapsulation
## 3484 ActivityWithReceiver Deficient Encapsulation
## 3485 ActivityWithReceiver Deficient Encapsulation
## 3486 ActivityWithReceiver Deficient Encapsulation
## 3487 ActivityWithReceiver Deficient Encapsulation
## 3488 ActivityWithReceiver Deficient Encapsulation
## 3489 ActivityWithReceiver Deficient Encapsulation
## 3490 ActivityWithReceiver Deficient Encapsulation
## 3491 ActivityWithReceiver Deficient Encapsulation
## 3492 ActivityWithReceiver Deficient Encapsulation
## 3493 ActivityWithReceiver Deficient Encapsulation
## 3494 FragmentWithReceiver Deficient Encapsulation
## 3495 FragmentWithReceiver Deficient Encapsulation
## 3496 FragmentWithReceiver Deficient Encapsulation
## 3497 FragmentWithReceiver Deficient Encapsulation
## 3498 FragmentWithReceiver Deficient Encapsulation
## 3499 FragmentWithReceiver Deficient Encapsulation
## 3500 FragmentWithReceiver Deficient Encapsulation
## 3501 FragmentWithReceiver Deficient Encapsulation
## 3502 FragmentWithReceiver Deficient Encapsulation
## 3503 FragmentWithReceiver Deficient Encapsulation
## 3504 FragmentWithReceiver Deficient Encapsulation
## 3505 FragmentWithReceiver Deficient Encapsulation
## 3506 ResActivity Unutilized Abstraction
## 3507 ResActivity Unutilized Abstraction
## 3508 ResActivity Unutilized Abstraction
## 3509 ResActivity Unutilized Abstraction
## 3510 ResActivity Unutilized Abstraction
## 3511 ResActivity Unutilized Abstraction
## 3512 ResActivity Unutilized Abstraction
## 3513 ResActivity Unutilized Abstraction
## 3514 ResActivity Unutilized Abstraction
## 3515 ResActivity Unutilized Abstraction
## 3516 ResActivity Unutilized Abstraction
## 3517 ResActivity Unutilized Abstraction
## 3518 TracedActivity Multifaceted Abstraction
## 3519 TracedActivity Multifaceted Abstraction
## 3520 TracedActivity Multifaceted Abstraction
## 3521 TracedActivity Multifaceted Abstraction
## 3522 TracedActivity Multifaceted Abstraction
## 3523 TracedActivity Multifaceted Abstraction
## 3524 TracedActivity Multifaceted Abstraction
## 3525 TracedActivity Multifaceted Abstraction
## 3526 TracedActivity Multifaceted Abstraction
## 3527 TracedActivity Multifaceted Abstraction
## 3528 TracedActivity Multifaceted Abstraction
## 3529 TracedActivity Multifaceted Abstraction
## 3530 TracedActivity Deficient Encapsulation
## 3531 TracedActivity Deficient Encapsulation
## 3532 TracedActivity Deficient Encapsulation
## 3533 TracedActivity Deficient Encapsulation
## 3534 TracedActivity Deficient Encapsulation
## 3535 TracedActivity Deficient Encapsulation
## 3536 TracedActivity Deficient Encapsulation
## 3537 TracedActivity Deficient Encapsulation
## 3538 TracedActivity Deficient Encapsulation
## 3539 TracedActivity Deficient Encapsulation
## 3540 TracedActivity Deficient Encapsulation
## 3541 TracedActivity Deficient Encapsulation
## 3542 MyService Insufficient Modularization
## 3543 MyService Insufficient Modularization
## 3544 MyService Insufficient Modularization
## 3545 MyService Insufficient Modularization
## 3546 MyService Insufficient Modularization
## 3547 MyService Insufficient Modularization
## 3548 MyService Insufficient Modularization
## 3549 MyService Insufficient Modularization
## 3550 MyService Insufficient Modularization
## 3551 MyService Insufficient Modularization
## 3552 MyService Insufficient Modularization
## 3553 MyService Insufficient Modularization
## 3554 PostRestService Unutilized Abstraction
## 3555 PostRestService Unutilized Abstraction
## 3556 PostRestService Unutilized Abstraction
## 3557 PostRestService Unutilized Abstraction
## 3558 PostRestService Unutilized Abstraction
## 3559 PostRestService Unutilized Abstraction
## 3560 PostRestService Unutilized Abstraction
## 3561 PostRestService Unutilized Abstraction
## 3562 PostRestService Unutilized Abstraction
## 3563 PostRestService Unutilized Abstraction
## 3564 PostRestService Unutilized Abstraction
## 3565 PostRestService Unutilized Abstraction
## 3566 ApplicationInjectedActivity Unutilized Abstraction
## 3567 ApplicationInjectedActivity Unutilized Abstraction
## 3568 ApplicationInjectedActivity Unutilized Abstraction
## 3569 ApplicationInjectedActivity Unutilized Abstraction
## 3570 ApplicationInjectedActivity Unutilized Abstraction
## 3571 ApplicationInjectedActivity Unutilized Abstraction
## 3572 ApplicationInjectedActivity Unutilized Abstraction
## 3573 ApplicationInjectedActivity Unutilized Abstraction
## 3574 ApplicationInjectedActivity Unutilized Abstraction
## 3575 ApplicationInjectedActivity Unutilized Abstraction
## 3576 ApplicationInjectedActivity Unutilized Abstraction
## 3577 ApplicationInjectedActivity Unutilized Abstraction
## 3578 ValidatorParameterHelper Insufficient Modularization
## 3579 ValidatorParameterHelper Insufficient Modularization
## 3580 ValidatorParameterHelper Insufficient Modularization
## 3581 ValidatorParameterHelper Insufficient Modularization
## 3582 ValidatorParameterHelper Insufficient Modularization
## 3583 ValidatorParameterHelper Insufficient Modularization
## 3584 ValidatorParameterHelper Insufficient Modularization
## 3585 ValidatorParameterHelper Insufficient Modularization
## 3586 ValidatorParameterHelper Insufficient Modularization
## 3587 ValidatorParameterHelper Insufficient Modularization
## 3588 ValidatorParameterHelper Insufficient Modularization
## 3589 ValidatorParameterHelper Insufficient Modularization
## 3590 AndroidManifestFinder Feature Envy
## 3591 AndroidManifestFinder Feature Envy
## 3592 AndroidManifestFinder Feature Envy
## 3593 AndroidManifestFinder Feature Envy
## 3594 AndroidManifestFinder Feature Envy
## 3595 AndroidManifestFinder Feature Envy
## 3596 AndroidManifestFinder Feature Envy
## 3597 AndroidManifestFinder Feature Envy
## 3598 AndroidManifestFinder Feature Envy
## 3599 AndroidManifestFinder Feature Envy
## 3600 AndroidManifestFinder Feature Envy
## 3601 AndroidManifestFinder Feature Envy
## 3602 AndroidManifestFinder Deficient Encapsulation
## 3603 AndroidManifestFinder Deficient Encapsulation
## 3604 AndroidManifestFinder Deficient Encapsulation
## 3605 AndroidManifestFinder Deficient Encapsulation
## 3606 AndroidManifestFinder Deficient Encapsulation
## 3607 AndroidManifestFinder Deficient Encapsulation
## 3608 AndroidManifestFinder Deficient Encapsulation
## 3609 AndroidManifestFinder Deficient Encapsulation
## 3610 AndroidManifestFinder Deficient Encapsulation
## 3611 AndroidManifestFinder Deficient Encapsulation
## 3612 AndroidManifestFinder Deficient Encapsulation
## 3613 AndroidManifestFinder Deficient Encapsulation
## 3614 Formatter Cyclically-dependent Modularization
## 3615 Formatter Cyclically-dependent Modularization
## 3616 Formatter Cyclically-dependent Modularization
## 3617 Formatter Cyclically-dependent Modularization
## 3618 Formatter Cyclically-dependent Modularization
## 3619 Formatter Cyclically-dependent Modularization
## 3620 Formatter Cyclically-dependent Modularization
## 3621 Formatter Cyclically-dependent Modularization
## 3622 Formatter Cyclically-dependent Modularization
## 3623 Formatter Cyclically-dependent Modularization
## 3624 Formatter Cyclically-dependent Modularization
## 3625 Formatter Cyclically-dependent Modularization
## 3626 Formatter Cyclically-dependent Modularization
## 3627 Formatter Cyclically-dependent Modularization
## 3628 Logger Cyclically-dependent Modularization
## 3629 Logger Cyclically-dependent Modularization
## 3630 Logger Cyclically-dependent Modularization
## 3631 Logger Cyclically-dependent Modularization
## 3632 Logger Cyclically-dependent Modularization
## 3633 Logger Cyclically-dependent Modularization
## 3634 Logger Cyclically-dependent Modularization
## 3635 Logger Cyclically-dependent Modularization
## 3636 Logger Cyclically-dependent Modularization
## 3637 Logger Cyclically-dependent Modularization
## 3638 Logger Cyclically-dependent Modularization
## 3639 Logger Cyclically-dependent Modularization
## 3640 Logger Cyclically-dependent Modularization
## 3641 Logger Cyclically-dependent Modularization
## 3642 AbstractActivity Unnecessary Abstraction
## 3643 AbstractActivity Unnecessary Abstraction
## 3644 AbstractActivity Unnecessary Abstraction
## 3645 AbstractActivity Unnecessary Abstraction
## 3646 AbstractActivity Unnecessary Abstraction
## 3647 AbstractActivity Unnecessary Abstraction
## 3648 AbstractActivity Unnecessary Abstraction
## 3649 AbstractActivity Unnecessary Abstraction
## 3650 AbstractActivity Unnecessary Abstraction
## 3651 AbstractActivity Unnecessary Abstraction
## 3652 AbstractActivity Unnecessary Abstraction
## 3653 AbstractActivity Unnecessary Abstraction
## 3654 CheckedChangeHandledActivity Unutilized Abstraction
## 3655 CheckedChangeHandledActivity Unutilized Abstraction
## 3656 CheckedChangeHandledActivity Unutilized Abstraction
## 3657 CheckedChangeHandledActivity Unutilized Abstraction
## 3658 CheckedChangeHandledActivity Unutilized Abstraction
## 3659 CheckedChangeHandledActivity Unutilized Abstraction
## 3660 CheckedChangeHandledActivity Unutilized Abstraction
## 3661 CheckedChangeHandledActivity Unutilized Abstraction
## 3662 CheckedChangeHandledActivity Unutilized Abstraction
## 3663 CheckedChangeHandledActivity Unutilized Abstraction
## 3664 CheckedChangeHandledActivity Unutilized Abstraction
## 3665 CheckedChangeHandledActivity Unutilized Abstraction
## 3666 CheckedChangeHandledActivity Broken Hierarchy
## 3667 CheckedChangeHandledActivity Broken Hierarchy
## 3668 CheckedChangeHandledActivity Broken Hierarchy
## 3669 CheckedChangeHandledActivity Broken Hierarchy
## 3670 CheckedChangeHandledActivity Broken Hierarchy
## 3671 CheckedChangeHandledActivity Broken Hierarchy
## 3672 CheckedChangeHandledActivity Broken Hierarchy
## 3673 CheckedChangeHandledActivity Broken Hierarchy
## 3674 CheckedChangeHandledActivity Broken Hierarchy
## 3675 CheckedChangeHandledActivity Broken Hierarchy
## 3676 CheckedChangeHandledActivity Broken Hierarchy
## 3677 CheckedChangeHandledActivity Broken Hierarchy
## 3678 ClicksHandledActivity Unutilized Abstraction
## 3679 ClicksHandledActivity Unutilized Abstraction
## 3680 ClicksHandledActivity Unutilized Abstraction
## 3681 ClicksHandledActivity Unutilized Abstraction
## 3682 ClicksHandledActivity Unutilized Abstraction
## 3683 ClicksHandledActivity Unutilized Abstraction
## 3684 ClicksHandledActivity Unutilized Abstraction
## 3685 ClicksHandledActivity Unutilized Abstraction
## 3686 ClicksHandledActivity Unutilized Abstraction
## 3687 ClicksHandledActivity Unutilized Abstraction
## 3688 ClicksHandledActivity Unutilized Abstraction
## 3689 ClicksHandledActivity Unutilized Abstraction
## 3690 ClicksHandledActivity Broken Hierarchy
## 3691 ClicksHandledActivity Broken Hierarchy
## 3692 ClicksHandledActivity Broken Hierarchy
## 3693 ClicksHandledActivity Broken Hierarchy
## 3694 ClicksHandledActivity Broken Hierarchy
## 3695 ClicksHandledActivity Broken Hierarchy
## 3696 ClicksHandledActivity Broken Hierarchy
## 3697 ClicksHandledActivity Broken Hierarchy
## 3698 ClicksHandledActivity Broken Hierarchy
## 3699 ClicksHandledActivity Broken Hierarchy
## 3700 ClicksHandledActivity Broken Hierarchy
## 3701 ClicksHandledActivity Broken Hierarchy
## 3702 EmptyActivityWithLayout Unnecessary Abstraction
## 3703 EmptyActivityWithLayout Unnecessary Abstraction
## 3704 EmptyActivityWithLayout Unnecessary Abstraction
## 3705 EmptyActivityWithLayout Unnecessary Abstraction
## 3706 EmptyActivityWithLayout Unnecessary Abstraction
## 3707 EmptyActivityWithLayout Unnecessary Abstraction
## 3708 EmptyActivityWithLayout Unnecessary Abstraction
## 3709 EmptyActivityWithLayout Unnecessary Abstraction
## 3710 EmptyActivityWithLayout Unnecessary Abstraction
## 3711 EmptyActivityWithLayout Unnecessary Abstraction
## 3712 EmptyActivityWithLayout Unnecessary Abstraction
## 3713 EmptyActivityWithLayout Unnecessary Abstraction
## 3714 EmptyActivityWithLayout Unutilized Abstraction
## 3715 EmptyActivityWithLayout Unutilized Abstraction
## 3716 EmptyActivityWithLayout Unutilized Abstraction
## 3717 EmptyActivityWithLayout Unutilized Abstraction
## 3718 EmptyActivityWithLayout Unutilized Abstraction
## 3719 EmptyActivityWithLayout Unutilized Abstraction
## 3720 EmptyActivityWithLayout Unutilized Abstraction
## 3721 EmptyActivityWithLayout Unutilized Abstraction
## 3722 EmptyActivityWithLayout Unutilized Abstraction
## 3723 EmptyActivityWithLayout Unutilized Abstraction
## 3724 EmptyActivityWithLayout Unutilized Abstraction
## 3725 EmptyActivityWithLayout Unutilized Abstraction
## 3726 FocusChangeHandledActivity Unutilized Abstraction
## 3727 FocusChangeHandledActivity Unutilized Abstraction
## 3728 FocusChangeHandledActivity Unutilized Abstraction
## 3729 FocusChangeHandledActivity Unutilized Abstraction
## 3730 FocusChangeHandledActivity Unutilized Abstraction
## 3731 FocusChangeHandledActivity Unutilized Abstraction
## 3732 FocusChangeHandledActivity Unutilized Abstraction
## 3733 FocusChangeHandledActivity Unutilized Abstraction
## 3734 FocusChangeHandledActivity Unutilized Abstraction
## 3735 FocusChangeHandledActivity Unutilized Abstraction
## 3736 FocusChangeHandledActivity Unutilized Abstraction
## 3737 FocusChangeHandledActivity Unutilized Abstraction
## 3738 FocusChangeHandledActivity Broken Hierarchy
## 3739 FocusChangeHandledActivity Broken Hierarchy
## 3740 FocusChangeHandledActivity Broken Hierarchy
## 3741 FocusChangeHandledActivity Broken Hierarchy
## 3742 FocusChangeHandledActivity Broken Hierarchy
## 3743 FocusChangeHandledActivity Broken Hierarchy
## 3744 FocusChangeHandledActivity Broken Hierarchy
## 3745 FocusChangeHandledActivity Broken Hierarchy
## 3746 FocusChangeHandledActivity Broken Hierarchy
## 3747 FocusChangeHandledActivity Broken Hierarchy
## 3748 FocusChangeHandledActivity Broken Hierarchy
## 3749 FocusChangeHandledActivity Broken Hierarchy
## 3750 FromHtmlActivity Unnecessary Abstraction
## 3751 FromHtmlActivity Unnecessary Abstraction
## 3752 FromHtmlActivity Unnecessary Abstraction
## 3753 FromHtmlActivity Unnecessary Abstraction
## 3754 FromHtmlActivity Unnecessary Abstraction
## 3755 FromHtmlActivity Unnecessary Abstraction
## 3756 FromHtmlActivity Unnecessary Abstraction
## 3757 FromHtmlActivity Unnecessary Abstraction
## 3758 FromHtmlActivity Unnecessary Abstraction
## 3759 FromHtmlActivity Unnecessary Abstraction
## 3760 FromHtmlActivity Unnecessary Abstraction
## 3761 FromHtmlActivity Unnecessary Abstraction
## 3762 FromHtmlActivity Unutilized Abstraction
## 3763 FromHtmlActivity Unutilized Abstraction
## 3764 FromHtmlActivity Unutilized Abstraction
## 3765 FromHtmlActivity Unutilized Abstraction
## 3766 FromHtmlActivity Unutilized Abstraction
## 3767 FromHtmlActivity Unutilized Abstraction
## 3768 FromHtmlActivity Unutilized Abstraction
## 3769 FromHtmlActivity Unutilized Abstraction
## 3770 FromHtmlActivity Unutilized Abstraction
## 3771 FromHtmlActivity Unutilized Abstraction
## 3772 FromHtmlActivity Unutilized Abstraction
## 3773 FromHtmlActivity Unutilized Abstraction
## 3774 ItemClicksHandledActivity Unutilized Abstraction
## 3775 ItemClicksHandledActivity Unutilized Abstraction
## 3776 ItemClicksHandledActivity Unutilized Abstraction
## 3777 ItemClicksHandledActivity Unutilized Abstraction
## 3778 ItemClicksHandledActivity Unutilized Abstraction
## 3779 ItemClicksHandledActivity Unutilized Abstraction
## 3780 ItemClicksHandledActivity Unutilized Abstraction
## 3781 ItemClicksHandledActivity Unutilized Abstraction
## 3782 ItemClicksHandledActivity Unutilized Abstraction
## 3783 ItemClicksHandledActivity Unutilized Abstraction
## 3784 ItemClicksHandledActivity Unutilized Abstraction
## 3785 ItemClicksHandledActivity Unutilized Abstraction
## 3786 LongClicksHandledActivity Unutilized Abstraction
## 3787 LongClicksHandledActivity Unutilized Abstraction
## 3788 LongClicksHandledActivity Unutilized Abstraction
## 3789 LongClicksHandledActivity Unutilized Abstraction
## 3790 LongClicksHandledActivity Unutilized Abstraction
## 3791 LongClicksHandledActivity Unutilized Abstraction
## 3792 LongClicksHandledActivity Unutilized Abstraction
## 3793 LongClicksHandledActivity Unutilized Abstraction
## 3794 LongClicksHandledActivity Unutilized Abstraction
## 3795 LongClicksHandledActivity Unutilized Abstraction
## 3796 LongClicksHandledActivity Unutilized Abstraction
## 3797 LongClicksHandledActivity Unutilized Abstraction
## 3798 LongClicksHandledActivity Broken Hierarchy
## 3799 LongClicksHandledActivity Broken Hierarchy
## 3800 LongClicksHandledActivity Broken Hierarchy
## 3801 LongClicksHandledActivity Broken Hierarchy
## 3802 LongClicksHandledActivity Broken Hierarchy
## 3803 LongClicksHandledActivity Broken Hierarchy
## 3804 LongClicksHandledActivity Broken Hierarchy
## 3805 LongClicksHandledActivity Broken Hierarchy
## 3806 LongClicksHandledActivity Broken Hierarchy
## 3807 LongClicksHandledActivity Broken Hierarchy
## 3808 LongClicksHandledActivity Broken Hierarchy
## 3809 LongClicksHandledActivity Broken Hierarchy
## 3810 PageChangeListenerActivity Unutilized Abstraction
## 3811 PageChangeListenerActivity Unutilized Abstraction
## 3812 PageChangeListenerActivity Unutilized Abstraction
## 3813 PageChangeListenerActivity Unutilized Abstraction
## 3814 PageChangeListenerActivity Unutilized Abstraction
## 3815 PageChangeListenerActivity Unutilized Abstraction
## 3816 PageChangeListenerActivity Unutilized Abstraction
## 3817 PageChangeListenerActivity Unutilized Abstraction
## 3818 PageChangeListenerActivity Unutilized Abstraction
## 3819 PageChangeListenerActivity Unutilized Abstraction
## 3820 PageChangeListenerActivity Unutilized Abstraction
## 3821 PageChangeListenerActivity Unutilized Abstraction
## 3822 PageChangeListenerActivity Deficient Encapsulation
## 3823 PageChangeListenerActivity Deficient Encapsulation
## 3824 PageChangeListenerActivity Deficient Encapsulation
## 3825 PageChangeListenerActivity Deficient Encapsulation
## 3826 PageChangeListenerActivity Deficient Encapsulation
## 3827 PageChangeListenerActivity Deficient Encapsulation
## 3828 PageChangeListenerActivity Deficient Encapsulation
## 3829 PageChangeListenerActivity Deficient Encapsulation
## 3830 PageChangeListenerActivity Deficient Encapsulation
## 3831 PageChangeListenerActivity Deficient Encapsulation
## 3832 PageChangeListenerActivity Deficient Encapsulation
## 3833 PageChangeListenerActivity Deficient Encapsulation
## 3834 SeekBarChangeListenedActivity Unutilized Abstraction
## 3835 SeekBarChangeListenedActivity Unutilized Abstraction
## 3836 SeekBarChangeListenedActivity Unutilized Abstraction
## 3837 SeekBarChangeListenedActivity Unutilized Abstraction
## 3838 SeekBarChangeListenedActivity Unutilized Abstraction
## 3839 SeekBarChangeListenedActivity Unutilized Abstraction
## 3840 SeekBarChangeListenedActivity Unutilized Abstraction
## 3841 SeekBarChangeListenedActivity Unutilized Abstraction
## 3842 SeekBarChangeListenedActivity Unutilized Abstraction
## 3843 SeekBarChangeListenedActivity Unutilized Abstraction
## 3844 SeekBarChangeListenedActivity Unutilized Abstraction
## 3845 SeekBarChangeListenedActivity Unutilized Abstraction
## 3846 SSLConnection Unutilized Abstraction
## Cause.of.the.Smell
## 1 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 4 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 5 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 6 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 7 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 8 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 9 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 10 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 11 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 12 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 13 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 14 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 15 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 16 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 17 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 18 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 19 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 20 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 21 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 22 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 23 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 24 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 25 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 26 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 27 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 28 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 29 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 30 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 31 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 32 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 33 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 34 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 35 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 36 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 37 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 38 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 39 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 40 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 41 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 42 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 43 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 44 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 45 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 46 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 47 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 48 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 49 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 50 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 51 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 52 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 53 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 54 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 55 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 56 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 57 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 58 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 59 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 60 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 61 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 62 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 63 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 64 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 65 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 66 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 67 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 68 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 69 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 70 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 71 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 72 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 73 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 74 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 75 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 76 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 77 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 78 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 79 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 80 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 81 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 82 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 83 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 84 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 85 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 86 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 87 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 88 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 89 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 90 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 91 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 92 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 93 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 94 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 95 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 96 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 97 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 98 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 99 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 100 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 101 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 102 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 103 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 104 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 105 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 106 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 107 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 108 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 109 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 110 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 111 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 112 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 113 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 114 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 115 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 116 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 117 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 118 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 119 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 120 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 121 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 122 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 123 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 124 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 125 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 126 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 127 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 128 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 129 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 130 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 131 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 132 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 133 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 134 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 135 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 136 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 137 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 138 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 139 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 140 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 141 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 142 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 143 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 144 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 145 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 146 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 147 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 148 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 149 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 150 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 151 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 152 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 153 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 154 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 155 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 156 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 157 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 158 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 159 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 160 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 161 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 162 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 163 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 164 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 165 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 166 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 167 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 168 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 169 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 170 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 171 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 172 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 173 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 174 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 175 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 176 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 177 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 178 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 179 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 180 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 181 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 182 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 183 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 184 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 185 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 186 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 187 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 188 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 189 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 190 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 191 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 192 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 193 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 194 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 195 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 196 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 197 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 198 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 199 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 200 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 201 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 202 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 203 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 204 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 205 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 206 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: unboundView; myButton; someView; myTextView
## 207 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: unboundView; myButton; someView; myTextView
## 208 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 209 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 210 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 211 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 212 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 213 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 214 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 215 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 216 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 217 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 218 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 219 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 220 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: unboundView; myButton; someView; myTextView
## 221 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: unboundView; myButton; someView; myTextView
## 222 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 223 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 224 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 225 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 226 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 227 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 228 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: xmlResAnim; fadein
## 229 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: xmlResAnim; fadein
## 230 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 231 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 232 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 233 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 234 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 235 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 236 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 237 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 238 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 239 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 240 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 241 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 242 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 243 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 244 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 245 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 246 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 247 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 248 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 249 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 250 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 251 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 252 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 253 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 254 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 255 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 256 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 257 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 258 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 259 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 260 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 261 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 262 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 263 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 264 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 265 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 266 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 267 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 268 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 269 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 270 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 271 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 272 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 273 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 274 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 275 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 276 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 277 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 278 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 279 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 280 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 281 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 282 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 283 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 284 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 285 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 286 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 287 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 288 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 289 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 290 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 291 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 292 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 293 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 294 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 295 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 296 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 297 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 298 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 299 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 300 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 301 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 302 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 303 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 304 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 305 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 306 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 307 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 308 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 309 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 310 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 311 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 312 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 313 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 314 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 315 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 316 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 317 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 318 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 319 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 320 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 321 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 322 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 323 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 324 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 325 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 326 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 327 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 328 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 329 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 330 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 331 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 332 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 333 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 334 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 335 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 336 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 337 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 338 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 339 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 340 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 341 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 342 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 343 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 344 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 345 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 346 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 347 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 348 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 349 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 350 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 351 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 352 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 353 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 354 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 355 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 356 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 357 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 358 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 359 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 360 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 361 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 362 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 363 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 364 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 365 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 366 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 367 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 368 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 369 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 370 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 371 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 372 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 373 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 374 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 375 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 376 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 377 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 378 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 379 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 380 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 381 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 382 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 383 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 384 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 385 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 386 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 387 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 388 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 389 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 390 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 391 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 392 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 393 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 394 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 395 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 396 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 397 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 398 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 399 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 400 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 401 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 402 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 403 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 404 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 405 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 406 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 407 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 408 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 409 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 410 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 411 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 412 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 413 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 414 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 415 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 416 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 417 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 418 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 419 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 420 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 421 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 422 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 423 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 424 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 425 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 426 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 427 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 428 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 429 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 430 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 431 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 432 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 433 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 434 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 435 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 436 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 437 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 438 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 439 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 440 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 441 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 442 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 443 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 444 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 445 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 446 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 447 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 448 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 449 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 450 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 451 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 452 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 453 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 454 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 455 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 456 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 457 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 458 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 459 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 460 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 461 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 462 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 463 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 464 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 465 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 466 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 467 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 468 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ANDROID_MANIFEST_FILE_OPTION; LOGGER; MAX_PARENTS_FROM_SOURCE_FOLDER; processingEnv
## 469 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ANDROID_MANIFEST_FILE_OPTION; LOGGER; MAX_PARENTS_FROM_SOURCE_FOLDER; processingEnv
## 470 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 471 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 472 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 473 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 474 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 475 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 476 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 477 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 478 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 479 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 480 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 481 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 482 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 483 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 484 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 485 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 486 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 487 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 488 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 489 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 490 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 491 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 492 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 493 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 494 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 495 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 496 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 497 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 498 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 499 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 500 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 501 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 502 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 503 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 504 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 505 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 506 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 507 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 508 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3
## 509 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3
## 510 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 511 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 512 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 513 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 514 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 515 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 516 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 517 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 518 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 519 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 520 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 521 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 522 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 523 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 524 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 525 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 526 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 527 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 528 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 529 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 530 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 531 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 532 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 533 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 534 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 535 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 536 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 537 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 538 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 539 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 540 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 541 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 542 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 543 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 544 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 545 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 546 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 547 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 548 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 549 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 550 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 551 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 552 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 553 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 554 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 555 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 556 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 557 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 558 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 559 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 560 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 561 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 562 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 563 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 564 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 565 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 566 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 567 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 568 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 569 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 570 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 571 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 572 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 573 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 574 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 575 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 576 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 577 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 578 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 579 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 580 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 581 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 582 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 583 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 584 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 61 methods
## 585 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 61 methods
## 586 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 587 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 588 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 589 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 590 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 591 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 592 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 593 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 594 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 595 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 596 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 597 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 598 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 599 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 600 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 601 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 602 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 603 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 604 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 605 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 606 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 607 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 608 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 609 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 610 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 611 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 612 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 613 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 614 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 615 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 616 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 617 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 618 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 619 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 620 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 621 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 622 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 623 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 624 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 625 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 626 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 627 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 628 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 629 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 630 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 631 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 632 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 633 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 634 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 635 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 636 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 637 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 638 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 639 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 640 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 641 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 642 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 643 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 644 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 645 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 646 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 647 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 648 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 649 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 650 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 651 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 652 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 653 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 654 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 655 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 656 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 657 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 658 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3
## 659 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3
## 660 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 661 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 662 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 663 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 664 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 665 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 666 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 667 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 668 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 669 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 670 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 671 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 672 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 673 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 674 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 675 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 676 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 677 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 678 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 679 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 680 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 681 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 682 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 683 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 684 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 685 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 686 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 687 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 688 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 689 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 690 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 691 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 692 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 693 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 694 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 695 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 696 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 697 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 698 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 699 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 700 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 701 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 702 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 703 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 704 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 705 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 706 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 707 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 708 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 709 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 710 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 711 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 712 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 713 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 714 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 715 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 716 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 717 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 718 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 719 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 720 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 721 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 722 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 723 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 724 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 725 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 726 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 727 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 728 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 729 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs
## 730 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 731 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 732 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 733 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 734 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 61 methods
## 735 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 61 methods
## 736 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 737 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 738 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 739 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 740 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 741 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 742 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 743 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 744 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 745 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 746 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 747 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 748 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 749 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 750 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 751 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 752 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 753 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 754 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 755 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 756 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 757 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 758 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 759 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 760 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 761 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 762 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 763 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 764 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 765 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 766 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 767 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 768 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 769 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 770 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 771 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 772 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 773 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 774 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 775 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 776 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 777 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 778 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 779 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 780 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 781 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 782 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 783 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 784 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 785 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 786 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 787 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 788 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 789 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 790 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 791 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 792 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 793 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 794 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 795 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 796 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 797 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 798 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 799 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 800 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 801 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 802 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 803 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 804 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 805 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 806 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 807 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 808 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 809 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 810 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 811 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 812 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 813 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 814 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 815 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 816 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 817 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 818 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 819 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 820 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 821 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 822 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 823 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 824 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 825 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 826 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 827 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 828 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 829 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 830 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 831 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 832 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 833 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 834 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 835 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 836 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 837 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 838 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 839 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 840 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 841 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 842 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 843 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 844 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 845 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 846 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 847 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 848 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 849 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 850 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 851 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 852 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 853 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 854 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 855 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 856 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 857 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 858 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 859 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 860 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 861 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 862 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 863 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 864 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 865 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 866 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 867 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 868 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 869 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 870 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 871 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 872 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 873 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 874 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 875 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 876 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 877 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 878 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 879 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 880 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 881 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 882 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 883 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 884 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 885 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 886 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 887 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 888 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 889 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 890 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 891 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 892 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 893 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 894 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 895 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 896 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 897 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 898 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 899 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 900 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 901 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 902 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 903 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 904 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 905 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 906 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 907 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 908 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 909 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 910 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 911 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 912 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 913 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 914 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 915 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 916 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 917 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 918 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 919 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 920 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 921 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 922 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 923 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 924 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 925 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 25 public methods
## 926 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 927 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 928 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 929 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 930 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 931 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 932 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 933 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 934 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 935 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 936 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 937 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 938 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 939 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 940 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 941 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 942 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 943 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 944 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 945 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 946 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 947 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 948 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 949 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 950 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 951 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 952 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 953 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 954 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 955 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 956 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 957 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 958 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 959 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 960 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 961 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 962 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 963 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 964 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 965 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 966 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 967 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 968 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 969 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 970 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 971 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 972 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 973 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 974 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 975 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 976 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 977 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 978 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 979 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 980 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 981 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 982 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 983 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 984 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 985 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 986 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 987 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 988 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 989 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 990 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 991 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 992 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 993 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 994 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 995 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 996 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 997 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 998 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 999 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1000 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1001 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1002 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1003 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1004 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1005 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1006 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1007 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1008 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1009 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1010 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1011 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1012 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1013 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1014 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1015 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1016 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1017 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1018 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1019 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1020 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1021 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1022 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1023 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1024 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1025 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1026 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1027 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1028 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1029 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1030 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1031 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1032 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1033 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1034 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1035 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1036 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1037 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1038 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1039 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1040 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1041 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1042 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1043 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1044 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1045 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1046 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1047 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1048 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1049 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1050 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1051 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1052 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1053 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1054 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 1055 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 1056 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 1057 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 1058 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1059 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1060 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 1061 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 1062 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1063 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1064 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1065 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1066 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1067 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1068 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1069 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1070 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1071 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1072 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1073 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1074 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1075 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1076 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1077 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1078 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1079 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1080 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1081 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1082 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1083 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1084 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1085 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1086 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1087 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1088 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1089 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1090 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1091 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1092 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1093 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1094 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1095 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1096 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1097 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 29 public methods
## 1098 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1099 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1100 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1101 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1102 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1103 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1104 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1105 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1106 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1107 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1108 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1109 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1110 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1111 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1112 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1113 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1114 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1115 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1116 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1117 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1118 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1119 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1120 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1121 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1122 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1123 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1124 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1125 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1126 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1127 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1128 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1129 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1130 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1131 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1132 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1133 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1134 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1135 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1136 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1137 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1138 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1139 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1140 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1141 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1142 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1143 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1144 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1145 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1146 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1147 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1148 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1149 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1150 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1151 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1152 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1153 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1154 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1155 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1156 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1157 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1158 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1159 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1160 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1161 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1162 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1163 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1164 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1165 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1166 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1167 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1168 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1169 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1170 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1171 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1172 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1173 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1174 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1175 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1176 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1177 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1178 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1179 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1180 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1181 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1182 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1183 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1184 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1185 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1186 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1187 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1188 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1189 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1190 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1191 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1192 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1193 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1194 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1195 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1196 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1197 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1198 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1199 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1200 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1201 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1202 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1203 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1204 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1205 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1206 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1207 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1208 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1209 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1210 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1211 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1212 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1213 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1214 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1215 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1216 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1217 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1218 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1219 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1220 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1221 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1222 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1223 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1224 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue
## 1225 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue
## 1226 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1227 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1228 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 1229 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList
## 1230 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 1231 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: maintainedDependency; recreatedDependency; maintainedAbstracted; someObject
## 1232 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1233 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1234 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 1235 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; runtimeExceptionDao; ormLiteBean
## 1236 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1237 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1238 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1239 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1240 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1241 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1242 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1243 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1244 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1245 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1246 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1247 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1248 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1249 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1250 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1251 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1252 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1253 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1254 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1255 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1256 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1257 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1258 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1259 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1260 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1261 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1262 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1263 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1264 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1265 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1266 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1267 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1268 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1269 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1270 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1271 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1272 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1273 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1274 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1275 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1276 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1277 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1278 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1279 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1280 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1281 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1282 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1283 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1284 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1285 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1286 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1287 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1288 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1289 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1290 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1291 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1292 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1293 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1294 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1295 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1296 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1297 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1298 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1299 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1300 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1301 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1302 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1303 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1304 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1305 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1306 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1307 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1308 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1309 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1310 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1311 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1312 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1313 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1314 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1315 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1316 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1317 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1318 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1319 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1320 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1321 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1322 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1323 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1324 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1325 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1326 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1327 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1328 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1329 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1330 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1331 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1332 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1333 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1334 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1335 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1336 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1337 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1338 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1339 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1340 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1341 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1342 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1343 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1344 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1345 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1346 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1347 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1348 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1349 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1350 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1351 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1352 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1353 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1354 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1355 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1356 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1357 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1358 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1359 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1360 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1361 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1362 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1363 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1364 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1365 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1366 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1367 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1368 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1369 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1370 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1371 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1372 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1373 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1374 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1375 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1376 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1377 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1378 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1379 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1380 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1381 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1382 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1383 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1384 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1385 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1386 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1387 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1388 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1389 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1390 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1391 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1392 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1393 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1394 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1395 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1396 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1397 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1398 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1399 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1400 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1401 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1402 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1403 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1404 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1405 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1406 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1407 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1408 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1409 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1410 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1411 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1412 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1413 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1414 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1415 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1416 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1417 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1418 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1419 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1420 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1421 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1422 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1423 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1424 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1425 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1426 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1427 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1428 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1429 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1430 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1431 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1432 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1433 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1434 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1435 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1436 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1437 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1438 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1439 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1440 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1441 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1442 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1443 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1444 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1445 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1446 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1447 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1448 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1449 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1450 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1451 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1452 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1453 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1454 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1455 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1456 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1457 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1458 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1459 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1460 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1461 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1462 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1463 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1464 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1465 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1466 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1467 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1468 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1469 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1470 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1471 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1472 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1473 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1474 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1475 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1476 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1477 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1478 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1479 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1480 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1481 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1482 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1483 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1484 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1485 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1486 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1487 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1488 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1489 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1490 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1491 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1492 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1493 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1494 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1495 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1496 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1497 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1498 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1499 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1500 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1501 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1502 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1503 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1504 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1505 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1506 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1507 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1508 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1509 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1510 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1511 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1512 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1513 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1514 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1515 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1516 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1517 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1518 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1519 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1520 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1521 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1522 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1523 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1524 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1525 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1526 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1527 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1528 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1529 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1530 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1531 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1532 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1533 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1534 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1535 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1536 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1537 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1538 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1539 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1540 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1541 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1542 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1543 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1544 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1545 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1546 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1547 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1548 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1549 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1550 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1551 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1552 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1553 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1554 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1555 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1556 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1557 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1558 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1559 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1560 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1561 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1562 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1563 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1564 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1565 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1566 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1567 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1568 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1569 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1570 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1571 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1572 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1573 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1574 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1575 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1576 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1577 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1578 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1579 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1580 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1581 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1582 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1583 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1584 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1585 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1586 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1587 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1588 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1589 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1590 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1591 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1592 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1593 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1594 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1595 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1596 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8
## 1597 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8
## 1598 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1599 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1600 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1601 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1602 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1603 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1604 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1605 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1606 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1607 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1608 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1609 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1610 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1611 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1612 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1613 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1614 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1615 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1616 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1617 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1618 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1619 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1620 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1621 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1622 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1623 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1624 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1625 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1626 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1627 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1628 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1629 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1630 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1631 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1632 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1633 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1634 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1635 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1636 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1637 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1638 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1639 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 33 public methods
## 1640 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1641 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1642 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1643 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1644 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1645 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1646 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1647 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1648 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1649 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1650 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1651 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1652 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1653 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1654 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1655 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1656 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1657 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1658 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1659 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1660 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1661 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1662 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1663 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1664 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1665 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1666 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1667 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1668 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1669 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1670 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1671 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: customApplication
## 1672 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1673 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1674 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1675 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1676 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1677 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1678 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1679 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1680 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1681 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1682 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1683 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1684 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1685 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1686 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1687 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1688 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1689 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1690 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1691 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1692 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1693 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1694 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1695 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1696 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1697 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1698 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1699 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1700 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1701 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1702 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1703 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mHttpsClientTest1; mHttpsClientTest2; mHttpsClientTest3; mHttpsClientTest4
## 1704 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1705 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1706 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1707 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1708 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1709 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1710 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1711 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1712 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1713 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1714 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1715 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1716 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1717 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1718 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1719 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1720 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1721 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 1722 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1723 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1724 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1725 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1726 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1727 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 1728 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1729 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1730 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1731 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 1732 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1733 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: dependency; interfaceDependency; singletonDependency
## 1734 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1735 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1736 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1737 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency
## 1738 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1739 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context
## 1740 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1741 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context
## 1742 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1743 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 1744 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1745 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 1746 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1747 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1748 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1749 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1750 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1751 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1752 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1753 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1754 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1755 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments
## 1756 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1757 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1758 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1759 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1760 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1761 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1762 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1763 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1764 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1765 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 1766 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1767 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall
## 1768 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1769 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 1770 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1771 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle
## 1772 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1773 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1774 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1775 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1776 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1777 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1778 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1779 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: userDao; carDao; userRuntimeExceptionDao; runtimeExceptionDao; ormLiteBean
## 1780 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8
## 1781 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8
## 1782 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1783 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1784 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1785 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1786 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1787 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1788 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1789 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1790 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1791 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: somePrefs; activityDefaultPrefs; activityPrefs; applicationDefaultPrefs; defaultPrefs; publicPrefs; uniquePrefs; innerPrefs
## 1792 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1793 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1794 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1795 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid
## 1796 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1797 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 1798 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1799 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1800 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1801 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: fade_in; fadein; injected_string; injectedString; helloHtml; htmlInjected
## 1802 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1803 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 62 methods
## 1804 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1805 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1806 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1807 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 1808 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1809 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 1810 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1811 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1812 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1813 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1814 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1815 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1816 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1817 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1818 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1819 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1820 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1821 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 1822 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1823 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1824 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1825 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1826 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1827 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1828 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1829 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1830 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1831 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1832 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1833 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 1834 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1835 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1836 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1837 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1838 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1839 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1840 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1841 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1842 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1843 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1844 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1845 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 1846 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1847 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1848 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1849 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1850 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1851 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1852 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1853 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1854 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1855 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1856 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1857 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1858 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1859 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1860 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1861 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1862 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1863 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1864 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1865 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1866 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1867 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1868 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1869 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1870 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1871 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1872 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1873 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 1874 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1875 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1876 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1877 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1878 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1879 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1880 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1881 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1882 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1883 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1884 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1885 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 1886 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1887 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1888 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1889 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1890 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1891 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1892 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1893 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1894 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1895 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1896 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1897 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1898 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1899 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1900 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1901 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1902 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1903 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1904 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1905 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1906 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1907 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1908 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1909 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1910 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1911 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1912 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1913 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1914 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1915 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1916 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1917 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1918 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1919 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1920 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1921 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1922 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1923 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1924 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1925 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1926 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1927 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1928 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1929 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1930 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1931 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1932 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1933 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1934 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1935 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1936 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1937 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1938 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1939 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1940 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1941 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1942 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1943 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1944 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1945 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 1946 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1947 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1948 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1949 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1950 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1951 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1952 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1953 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1954 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1955 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1956 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1957 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1958 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1959 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1960 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1961 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1962 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1963 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1964 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1965 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1966 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1967 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1968 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1969 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1970 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1971 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1972 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1973 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1974 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1975 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1976 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1977 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1978 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1979 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1980 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1981 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 1982 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1983 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1984 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1985 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1986 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1987 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1988 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1989 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1990 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1991 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1992 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1993 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 1994 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1995 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1996 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1997 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1998 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 1999 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2000 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2001 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2002 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2003 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2004 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2005 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2006 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2007 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2008 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2009 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2010 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2011 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2012 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2013 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2014 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2015 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2016 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2017 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2018 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2019 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2020 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2021 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2022 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2023 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2024 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2025 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2026 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2027 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2028 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2029 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2030 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2031 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2032 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2033 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2034 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2035 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2036 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2037 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2038 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2039 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2040 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2041 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2042 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2043 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2044 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2045 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2046 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2047 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2048 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2049 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2050 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2051 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2052 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2053 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2054 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2055 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2056 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2057 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2058 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2059 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2060 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2061 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2062 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2063 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2064 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2065 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2066 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2067 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2068 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2069 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2070 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2071 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2072 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2073 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2074 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2075 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2076 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2077 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2078 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2079 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2080 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2081 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2082 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2083 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2084 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2085 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2086 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2087 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2088 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2089 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2090 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2091 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2092 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2093 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2094 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2095 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2096 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2097 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2098 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2099 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2100 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2101 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2102 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2103 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2104 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2105 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2106 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2107 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2108 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2109 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2110 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2111 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2112 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2113 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2114 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2115 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2116 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2117 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2118 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2119 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2120 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2121 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2122 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2123 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2124 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2125 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2126 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2127 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2128 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2129 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2130 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2131 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2132 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2133 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2134 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2135 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2136 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2137 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2138 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2139 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2140 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2141 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2142 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2143 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2144 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2145 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2146 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2147 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2148 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2149 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2150 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2151 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2152 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2153 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2154 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2155 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2156 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2157 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2158 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2159 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2160 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2161 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2162 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2163 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2164 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2165 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2166 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2167 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2168 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2169 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2170 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2171 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2172 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2173 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2174 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2175 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2176 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2177 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2178 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2179 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2180 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2181 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2182 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2183 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2184 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2185 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2186 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2187 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2188 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2189 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2190 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2191 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2192 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2193 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2194 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2195 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2196 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2197 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 2198 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2199 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2200 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2201 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2202 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2203 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2204 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2205 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2206 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2207 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2208 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2209 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2210 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2211 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2212 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2213 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2214 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2215 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2216 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2217 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2218 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2219 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2220 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2221 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2222 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2223 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2224 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2225 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2226 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2227 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2228 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2229 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2230 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2231 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2232 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2233 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 2234 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2235 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2236 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2237 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2238 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2239 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2240 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2241 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2242 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2243 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2244 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2245 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2246 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2247 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2248 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2249 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2250 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2251 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2252 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2253 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2254 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2255 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2256 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2257 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 2258 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2259 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2260 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2261 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2262 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2263 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2264 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2265 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2266 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2267 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2268 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2269 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2270 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2271 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2272 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2273 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2274 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2275 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2276 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2277 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2278 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2279 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2280 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2281 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2282 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2283 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2284 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2285 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2286 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2287 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2288 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2289 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2290 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2291 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2292 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2293 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 2294 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2295 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2296 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2297 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2298 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2299 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2300 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2301 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2302 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2303 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2304 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2305 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 2306 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2307 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2308 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2309 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2310 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2311 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2312 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2313 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2314 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2315 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2316 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2317 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 2318 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2319 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2320 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2321 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2322 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2323 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2324 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2325 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2326 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2327 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2328 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2329 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 2330 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2331 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2332 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2333 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2334 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2335 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2336 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2337 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2338 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2339 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2340 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2341 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2342 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2343 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2344 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2345 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2346 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2347 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2348 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2349 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2350 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2351 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2352 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2353 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2354 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2355 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2356 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2357 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2358 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2359 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2360 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2361 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2362 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2363 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2364 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2365 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 2366 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2367 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2368 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2369 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2370 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2371 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2372 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2373 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2374 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2375 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2376 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2377 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2378 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2379 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2380 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2381 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2382 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2383 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2384 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2385 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2386 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2387 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2388 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2389 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2390 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2391 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2392 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2393 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2394 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2395 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2396 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2397 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2398 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2399 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2400 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2401 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2402 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2403 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2404 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2405 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2406 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2407 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2408 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2409 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2410 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2411 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2412 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2413 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2414 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2415 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2416 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2417 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2418 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2419 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2420 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2421 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2422 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2423 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2424 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2425 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 2426 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2427 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2428 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2429 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2430 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2431 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2432 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2433 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2434 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2435 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2436 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2437 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 2438 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2439 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2440 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2441 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2442 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2443 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2444 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2445 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2446 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2447 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2448 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2449 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 2450 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2451 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2452 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2453 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2454 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2455 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2456 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2457 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2458 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2459 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2460 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2461 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2462 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2463 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2464 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2465 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2466 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2467 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2468 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2469 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2470 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2471 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2472 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2473 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 2474 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2475 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2476 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2477 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2478 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2479 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2480 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2481 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2482 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2483 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2484 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2485 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2486 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2487 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2488 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2489 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2490 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2491 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2492 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2493 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2494 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2495 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2496 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2497 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 2498 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2499 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2500 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2501 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2502 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2503 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2504 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2505 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2506 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2507 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2508 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2509 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2510 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2511 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2512 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2513 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2514 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2515 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2516 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2517 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2518 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2519 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2520 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2521 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2522 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2523 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2524 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2525 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2526 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2527 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2528 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2529 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2530 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2531 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2532 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2533 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2534 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2535 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2536 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2537 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2538 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2539 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2540 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2541 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2542 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2543 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2544 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2545 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2546 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2547 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2548 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2549 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2550 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2551 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2552 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2553 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2554 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2555 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2556 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2557 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2558 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2559 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2560 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2561 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2562 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2563 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2564 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2565 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2566 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2567 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2568 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2569 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2570 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2571 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2572 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2573 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2574 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2575 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2576 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2577 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2578 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2579 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2580 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2581 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2582 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2583 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2584 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2585 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2586 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2587 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2588 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2589 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2590 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2591 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2592 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2593 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2594 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2595 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2596 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2597 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2598 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2599 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2600 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2601 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2602 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2603 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2604 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2605 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2606 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2607 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2608 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2609 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 2610 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2611 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2612 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2613 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2614 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2615 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2616 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2617 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2618 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2619 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2620 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2621 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 2622 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2623 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2624 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2625 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2626 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2627 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2628 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2629 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2630 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2631 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2632 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2633 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2634 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2635 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2636 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2637 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2638 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2639 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2640 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2641 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2642 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2643 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2644 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2645 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2646 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2647 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2648 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2649 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2650 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2651 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2652 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2653 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2654 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2655 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2656 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2657 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 2658 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2659 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2660 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2661 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2662 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2663 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2664 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2665 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2666 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2667 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2668 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2669 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 2670 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2671 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2672 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2673 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2674 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2675 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2676 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2677 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2678 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2679 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2680 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2681 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2682 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2683 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2684 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2685 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2686 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2687 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2688 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2689 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2690 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2691 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2692 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2693 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2694 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2695 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2696 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2697 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2698 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2699 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2700 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2701 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2702 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2703 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2704 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2705 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 2706 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2707 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2708 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2709 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2710 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2711 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2712 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2713 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2714 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2715 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2716 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2717 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 2718 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2719 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2720 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2721 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2722 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2723 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2724 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2725 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2726 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2727 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2728 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2729 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 2730 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2731 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2732 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2733 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2734 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2735 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2736 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2737 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2738 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2739 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2740 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2741 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2742 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2743 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2744 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2745 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2746 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2747 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2748 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2749 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2750 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2751 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2752 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2753 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2754 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2755 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2756 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2757 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 2758 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2759 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2760 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2761 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2762 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2763 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2764 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2765 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2766 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2767 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2768 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2769 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 2770 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2771 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2772 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2773 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2774 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2775 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2776 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2777 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2778 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2779 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2780 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2781 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2782 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2783 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2784 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2785 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2786 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2787 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2788 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2789 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2790 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2791 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2792 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2793 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2794 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2795 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2796 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2797 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2798 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2799 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2800 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2801 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2802 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2803 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2804 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2805 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2806 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2807 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2808 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2809 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2810 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2811 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2812 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2813 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2814 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2815 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2816 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2817 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2818 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2819 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2820 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2821 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2822 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2823 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2824 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2825 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2826 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2827 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2828 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2829 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 2830 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2831 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2832 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2833 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2834 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2835 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2836 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2837 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2838 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2839 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2840 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2841 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2842 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2843 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2844 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2845 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2846 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2847 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2848 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2849 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2850 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2851 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2852 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2853 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2854 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2855 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2856 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2857 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2858 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2859 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2860 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2861 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2862 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2863 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2864 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2865 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2866 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2867 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2868 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2869 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2870 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2871 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2872 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2873 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2874 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2875 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2876 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2877 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 2878 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2879 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2880 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2881 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2882 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2883 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2884 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2885 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2886 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2887 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2888 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2889 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2890 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2891 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2892 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2893 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2894 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2895 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2896 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2897 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2898 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2899 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2900 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2901 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2902 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2903 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2904 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2905 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2906 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2907 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2908 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2909 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2910 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2911 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2912 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2913 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2914 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2915 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2916 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2917 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2918 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2919 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2920 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2921 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2922 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2923 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2924 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2925 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 2926 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2927 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2928 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2929 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2930 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2931 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2932 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2933 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2934 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2935 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2936 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2937 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2938 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2939 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2940 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2941 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2942 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2943 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2944 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2945 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2946 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2947 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2948 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2949 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 2950 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2951 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2952 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2953 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2954 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2955 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2956 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2957 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2958 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2959 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2960 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2961 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2962 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2963 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2964 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2965 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2966 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2967 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2968 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2969 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2970 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2971 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2972 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2973 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2974 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2975 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2976 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2977 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2978 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2979 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2980 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2981 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2982 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2983 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2984 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2985 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 2986 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2987 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2988 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2989 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2990 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2991 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2992 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2993 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2994 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2995 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2996 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2997 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 2998 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 2999 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3000 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3001 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3002 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3003 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3004 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3005 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3006 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3007 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3008 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3009 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: SERIAL_DELAY; calledDelayed
## 3010 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3011 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3012 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3013 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3014 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3015 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3016 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3017 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3018 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3019 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3020 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3021 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3022 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3023 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3024 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3025 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3026 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3027 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3028 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3029 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3030 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3031 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3032 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3033 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3034 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3035 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3036 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3037 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3038 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3039 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3040 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3041 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3042 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3043 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3044 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3045 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3046 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3047 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3048 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3049 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3050 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3051 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3052 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3053 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3054 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3055 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3056 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3057 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3058 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3059 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3060 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3061 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3062 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3063 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3064 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3065 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3066 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3067 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3068 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3069 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3070 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3071 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3072 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3073 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3074 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3075 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3076 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3077 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3078 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3079 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3080 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3081 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: EXTRA_DATA_KEY; extraDataSet; afterExtrasCalled
## 3082 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3083 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3084 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3085 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3086 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3087 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3088 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3089 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3090 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3091 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3092 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3093 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3094 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3095 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3096 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3097 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3098 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3099 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3100 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3101 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3102 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3103 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3104 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3105 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3106 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3107 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3108 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3109 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3110 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3111 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3112 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3113 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3114 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3115 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3116 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3117 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterInjectCalled; notificationManagerNullAfterInject; notificationManager
## 3118 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3119 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3120 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3121 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3122 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3123 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3124 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3125 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3126 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3127 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3128 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3129 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3130 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3131 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3132 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3133 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3134 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3135 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3136 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3137 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3138 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3139 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3140 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3141 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: afterViewBean; afterViewBeanCalledBefore
## 3142 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3143 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3144 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3145 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3146 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3147 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3148 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3149 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3150 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3151 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3152 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3153 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3154 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3155 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3156 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3157 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3158 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3159 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3160 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3161 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3162 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3163 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3164 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3165 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3166 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3167 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3168 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3169 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3170 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3171 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3172 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3173 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3174 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3175 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3176 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3177 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: dependency; interfaceDependency; singletonDependency; methodInjectedDependency; methodInjectedSingleton; methodInjectedInterface; annotatedParamDependency; annotatedParamSingleton; annotatedParamInterface; multiDependency; multiDependencySingleton; multiDependencyInterface
## 3178 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3179 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3180 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3181 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3182 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3183 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3184 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3185 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3186 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3187 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3188 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3189 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; methodInjectedContext; multiInjectedContext
## 3190 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3191 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3192 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3193 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3194 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3195 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3196 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3197 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3198 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3199 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3200 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3201 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: context; myTextView; beanWithView
## 3202 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3203 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3204 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3205 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3206 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3207 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3208 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3209 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3210 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3211 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3212 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3213 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: context; myTextView; beanWithView
## 3214 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3215 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3216 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3217 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3218 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3219 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3220 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3221 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3222 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3223 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3224 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3225 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3226 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3227 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3228 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3229 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3230 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3231 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3232 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3233 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3234 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3235 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3236 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3237 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3238 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3239 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3240 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3241 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3242 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3243 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3244 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3245 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3246 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3247 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3248 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3249 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: myFragment; myFragment2; myFragmentTag; myFragmentTag2; beanWithFragments; methodInjectedFragmentByTag; multiInjectedFragmentByTag; methodInjectedFragmentById; multiInjectedFragmentById
## 3250 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3251 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3252 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3253 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3254 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3255 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3256 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3257 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3258 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3259 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3260 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3261 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3262 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3263 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3264 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3265 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3266 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3267 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3268 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3269 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3270 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3271 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3272 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3273 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3274 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3275 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3276 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3277 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3278 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3279 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3280 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3281 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3282 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3283 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3284 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3285 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3286 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3287 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3288 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3289 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3290 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3291 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3292 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3293 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3294 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3295 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3296 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3297 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3298 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3299 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3300 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3301 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3302 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3303 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3304 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3305 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3306 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3307 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3308 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3309 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: mySupportFragment; mySupportFragment2; mySupportFragmentTag; mySupportFragmentTag2; beanWithSupportFragments
## 3310 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3311 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3312 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3313 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3314 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3315 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3316 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3317 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3318 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3319 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3320 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3321 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_SIMPLE_TEST; ACTION_SCHEME_TEST; ACTION_PARAMETER_TEST; ACTION_MULTIPLE_TEST_1; ACTION_MULTIPLE_TEST_2; ACTION_EXTRA_PARAMETER_TEST; ACTION_EXTRA_INTENT_PARAMETERS_TEST; EXTRA_ARG_NAME1; EXTRA_ARG_NAME2; DATA_SCHEME; simpleActionReceived; actionWithSchemeReceived; parameterActionReceived; parameterActionValue; extraParameterActionReceived; extraParameterActionValue; multipleActionCall; originalIntent; extraIntent
## 3322 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3323 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3324 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3325 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3326 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3327 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3328 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3329 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3330 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3331 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3332 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3333 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: res; anim; afterViewsCalled; constructorParameter
## 3334 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3335 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3336 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3337 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3338 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3339 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3340 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3341 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3342 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3343 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3344 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3345 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3346 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3347 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3348 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3349 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3350 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3351 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3352 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3353 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3354 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3355 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3356 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3357 The tool detected the smell in this class because it contains only data members without any method implementation. Following fields are declared in this class: nullWrappedLong; myBoolean; myBooleanArray; myBooleanObject; myBooleanObjectArray; myByte; myByteArray; myByteObject; myByteObjectArray; myChar; myCharacterArray; myCharacterObject; myCharacterObjectArray; myCharSequence; myCharSequenceArray; myCharSequenceArrayList; myDouble; myDoubleArray; myDoubleObject; myDoubleObjectArray; myFloat; myFloatArray; myFloatObject; myFloatObjectArray; myInt; myIntegerArray; myIntegerObject; myIntegerObjectArray; myIntegerArrayList; myLong; myLongArray; myLongObject; myLongObjectArray; myShort; myShortArray; myShortObject; myShortObjectArray; myString; myStringArray; myStringList; mySerializableBean; mySerializableBeanArray; myParcelableBean; myParcelableBeanArray; myBundle; myGenericSerializableBean; myGenericSerializableBeanArray; myGenericParcelableBean; myGenericParcelableBeanArray; myParcelableBeanArrayList; myGenericParcelableBeanArrayList; mySerializableBeanArrayList; bundle; parcelerBean; mySparseParcelableArray
## 3358 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3359 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3360 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3361 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3362 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3363 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3364 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3365 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3366 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3367 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3368 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3369 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3370 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3371 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3372 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3373 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3374 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3375 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3376 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3377 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3378 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3379 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3380 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3381 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 0.8571428571428571
## 3382 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3383 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3384 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3385 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3386 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3387 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3388 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3389 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3390 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3391 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3392 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3393 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3394 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3395 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3396 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3397 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3398 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3399 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3400 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3401 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3402 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3403 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3404 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3405 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3406 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3407 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3408 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3409 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3410 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3411 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3412 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3413 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3414 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3415 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3416 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3417 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3418 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3419 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3420 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3421 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3422 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3423 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3424 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3425 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3426 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3427 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3428 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3429 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3430 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3431 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3432 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3433 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3434 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3435 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3436 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3437 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3438 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3439 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3440 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3441 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3442 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3443 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3444 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3445 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3446 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3447 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3448 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3449 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3450 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3451 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3452 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3453 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3454 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3455 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3456 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3457 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3458 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3459 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3460 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3461 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3462 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3463 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3464 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3465 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3466 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3467 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3468 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3469 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3470 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3471 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3472 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3473 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3474 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3475 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3476 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3477 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3478 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3479 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3480 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3481 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3482 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3483 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3484 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3485 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3486 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3487 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3488 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3489 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3490 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3491 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3492 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3493 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: ACTION_1; ACTION_2; CUSTOM_HTTP_ACTION; localWifiChangeIntentReceived; dataSchemeHttpIntentReceived; wifiChangeIntentReceived; action1Fired; action2Fired; wifiSsid; originalIntent; extraIntent
## 3494 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3495 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3496 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3497 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3498 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3499 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3500 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3501 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3502 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3503 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3504 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3505 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: RECEIVER_ACTION; defaultReceiverCalled; onAttachReceiverCalled; onStartReceiverCalled; onResumeReceiverCalled
## 3506 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3507 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3508 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3509 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3510 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3511 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3512 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3513 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3514 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3515 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3516 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3517 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3518 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3519 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3520 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3521 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3522 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3523 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3524 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3525 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3526 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3527 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3528 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3529 The tool detected the smell in this class because the cohesion among the methods of this class is low. LCOM of this class is: 1.0
## 3530 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3531 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3532 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3533 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3534 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3535 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3536 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3537 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3538 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3539 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3540 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3541 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: tracedMethodCalled; voidTracedMethodCalled; voidTracedMethodDebugCalled; voidTracedMethodVerboseCalled; voidTracedMethodWarnCalled; voidTracedMethodErrorCalled; voidTracedMethodInfoCalled; overloadedMethodInt; overloadedMethodIntFLoat
## 3542 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3543 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3544 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3545 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3546 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3547 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3548 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3549 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3550 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3551 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3552 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3553 The tool detected the smell in this class because the class contains large number of methods. Total methods in the class: 68 methods
## 3554 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3555 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3556 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3557 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3558 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3559 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3560 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3561 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3562 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3563 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3564 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3565 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3566 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3567 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3568 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3569 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3570 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3571 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3572 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3573 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3574 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3575 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3576 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3577 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3578 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3579 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3580 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3581 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3582 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3583 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3584 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3585 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3586 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3587 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3588 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3589 The tool detected the smell in this class becuase the class has bloated interface (large number of public methods). Total public methods in the class: 48 public methods
## 3590 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3591 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3592 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3593 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3594 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3595 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3596 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3597 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3598 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3599 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3600 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3601 The tool detected a instance of this smell because findManifestInSpecifiedPath is more interested in members of the type: Logger
## 3602 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3603 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3604 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3605 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3606 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3607 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3608 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3609 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3610 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3611 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3612 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3613 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: OPTION_MANIFEST; OPTION_LIBRARY; LOGGER; environment; name; matcher; GRADLE_GEN_FOLDER; MAVEN_GEN_FOLDER; ECLIPSE_GEN_FOLDER
## 3614 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3615 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3616 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3617 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3618 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3619 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3620 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3621 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3622 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3623 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3624 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3625 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3626 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3627 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3628 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3629 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3630 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3631 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3632 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3633 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3634 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3635 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3636 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3637 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3638 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3639 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3640 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3641 The tool detected the smell in this class because this class participates in a cyclic dependency. The participating classes in the cycle are: Formatter; Logger; LoggerContext
## 3642 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3643 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3644 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3645 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3646 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3647 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3648 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3649 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3650 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3651 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3652 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3653 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: myButton
## 3654 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3655 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3656 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3657 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3658 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3659 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3660 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3661 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3662 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3663 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3664 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3665 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3666 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3667 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3668 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3669 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3670 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3671 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3672 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3673 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3674 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3675 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3676 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3677 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3678 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3679 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3680 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3681 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3682 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3683 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3684 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3685 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3686 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3687 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3688 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3689 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3690 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3691 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3692 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3693 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3694 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3695 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3696 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3697 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3698 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3699 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3700 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3701 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3702 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3703 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3704 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3705 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3706 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3707 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3708 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3709 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3710 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3711 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3712 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3713 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class:
## 3714 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3715 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3716 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3717 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3718 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3719 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3720 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3721 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3722 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3723 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3724 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3725 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3726 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3727 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3728 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3729 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3730 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3731 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3732 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3733 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3734 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3735 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3736 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3737 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3738 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3739 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3740 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3741 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3742 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3743 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3744 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3745 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3746 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3747 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3748 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3749 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3750 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3751 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3752 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3753 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3754 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3755 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3756 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3757 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3758 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3759 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3760 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3761 The tool detected the smell in this class because the class contains only a few data members without any method implementation that indicates that the abstraction might not be required. Following fields are declared in this class: textView; someView
## 3762 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3763 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3764 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3765 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3766 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3767 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3768 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3769 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3770 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3771 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3772 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3773 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3774 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3775 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3776 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3777 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3778 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3779 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3780 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3781 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3782 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3783 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3784 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3785 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3786 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3787 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3788 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3789 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3790 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3791 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3792 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3793 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3794 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3795 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3796 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3797 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3798 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3799 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3800 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3801 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3802 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3803 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3804 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3805 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3806 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3807 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3808 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3809 The tool detected a potential instance of the smell because this type does not implement or override any method from it's supertype(s): EventsHandledAbstractActivity
## 3810 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3811 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3812 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3813 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3814 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3815 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3816 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3817 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3818 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3819 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3820 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3821 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3822 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3823 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3824 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3825 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3826 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3827 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3828 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3829 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3830 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3831 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3832 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3833 The tool detected the smell in this class because the class exposes fields belonging to it with public accessibility. Following fields are declared with public accessiblity: viewPager; position; positionOffset; positionOffsetPixels; state
## 3834 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3835 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3836 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3837 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3838 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3839 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3840 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3841 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3842 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3843 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3844 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3845 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## 3846 The tool detected the smell in this class because this class is potentially unused. (Please ignore the smell if the reported class is auto-generated and/or used to serve a specific known purpose.)
## ClassName
## 1 com.googlecode.androidannotations.test15.AbstractActivity
## 2 com.googlecode.androidannotations.test15.AbstractActivity
## 3 com.googlecode.androidannotations.test15.AbstractActivity
## 4 com.googlecode.androidannotations.test15.AbstractActivity
## 5 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 6 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 7 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 8 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 9 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 10 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 11 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 12 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 13 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 14 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 15 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 16 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 17 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 18 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 19 com.googlecode.androidannotations.test15.FromHtmlActivity
## 20 com.googlecode.androidannotations.test15.FromHtmlActivity
## 21 com.googlecode.androidannotations.test15.FromHtmlActivity
## 22 com.googlecode.androidannotations.test15.FromHtmlActivity
## 23 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 24 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 25 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 26 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 27 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 28 com.googlecode.androidannotations.test15.TracedActivity
## 29 com.googlecode.androidannotations.test15.TracedActivity
## 30 com.googlecode.androidannotations.test15.TracedActivity
## 31 com.googlecode.androidannotations.test15.TracedActivity
## 32 com.googlecode.androidannotations.test15.TracedActivity
## 33 com.googlecode.androidannotations.test15.TracedActivity
## 34 com.googlecode.androidannotations.test15.TransactionalActivity
## 35 com.googlecode.androidannotations.test15.TransactionalActivity
## 36 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 37 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 38 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 39 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 40 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 41 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 42 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 43 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 44 com.googlecode.androidannotations.test15.res.ResActivity
## 45 com.googlecode.androidannotations.test15.res.ResActivity
## 46 com.googlecode.androidannotations.test15.res.ResActivity
## 47 com.googlecode.androidannotations.test15.res.ResActivity
## 48 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 49 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 50 com.googlecode.androidannotations.test15.AbstractActivity
## 51 com.googlecode.androidannotations.test15.AbstractActivity
## 52 com.googlecode.androidannotations.test15.AbstractActivity
## 53 com.googlecode.androidannotations.test15.AbstractActivity
## 54 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 55 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 56 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 57 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 58 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 59 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 60 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 61 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 62 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 63 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 64 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 65 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 66 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 67 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 68 com.googlecode.androidannotations.test15.FromHtmlActivity
## 69 com.googlecode.androidannotations.test15.FromHtmlActivity
## 70 com.googlecode.androidannotations.test15.FromHtmlActivity
## 71 com.googlecode.androidannotations.test15.FromHtmlActivity
## 72 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 73 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 74 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 75 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 76 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 77 com.googlecode.androidannotations.test15.TracedActivity
## 78 com.googlecode.androidannotations.test15.TracedActivity
## 79 com.googlecode.androidannotations.test15.TracedActivity
## 80 com.googlecode.androidannotations.test15.TracedActivity
## 81 com.googlecode.androidannotations.test15.TracedActivity
## 82 com.googlecode.androidannotations.test15.TracedActivity
## 83 com.googlecode.androidannotations.test15.TransactionalActivity
## 84 com.googlecode.androidannotations.test15.TransactionalActivity
## 85 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 86 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 87 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 88 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 89 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 90 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 91 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 92 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 93 com.googlecode.androidannotations.test15.res.ResActivity
## 94 com.googlecode.androidannotations.test15.res.ResActivity
## 95 com.googlecode.androidannotations.test15.res.ResActivity
## 96 com.googlecode.androidannotations.test15.res.ResActivity
## 97 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 98 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 99 com.googlecode.androidannotations.test15.AbstractActivity
## 100 com.googlecode.androidannotations.test15.AbstractActivity
## 101 com.googlecode.androidannotations.test15.AbstractActivity
## 102 com.googlecode.androidannotations.test15.AbstractActivity
## 103 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 104 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 105 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 106 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 107 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 108 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 109 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 110 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 111 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 112 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 113 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 114 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 115 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 116 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 117 com.googlecode.androidannotations.test15.FromHtmlActivity
## 118 com.googlecode.androidannotations.test15.FromHtmlActivity
## 119 com.googlecode.androidannotations.test15.FromHtmlActivity
## 120 com.googlecode.androidannotations.test15.FromHtmlActivity
## 121 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 122 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 123 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 124 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 125 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 126 com.googlecode.androidannotations.test15.TracedActivity
## 127 com.googlecode.androidannotations.test15.TracedActivity
## 128 com.googlecode.androidannotations.test15.TracedActivity
## 129 com.googlecode.androidannotations.test15.TracedActivity
## 130 com.googlecode.androidannotations.test15.TracedActivity
## 131 com.googlecode.androidannotations.test15.TracedActivity
## 132 com.googlecode.androidannotations.test15.TransactionalActivity
## 133 com.googlecode.androidannotations.test15.TransactionalActivity
## 134 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 135 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 136 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 137 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 138 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 139 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 140 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 141 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 142 com.googlecode.androidannotations.test15.res.ResActivity
## 143 com.googlecode.androidannotations.test15.res.ResActivity
## 144 com.googlecode.androidannotations.test15.res.ResActivity
## 145 com.googlecode.androidannotations.test15.res.ResActivity
## 146 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 147 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 148 com.googlecode.androidannotations.test15.AbstractActivity
## 149 com.googlecode.androidannotations.test15.AbstractActivity
## 150 com.googlecode.androidannotations.test15.AbstractActivity
## 151 com.googlecode.androidannotations.test15.AbstractActivity
## 152 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 153 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 154 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 155 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 156 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 157 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 158 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 159 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 160 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 161 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 162 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 163 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 164 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 165 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 166 com.googlecode.androidannotations.test15.FromHtmlActivity
## 167 com.googlecode.androidannotations.test15.FromHtmlActivity
## 168 com.googlecode.androidannotations.test15.FromHtmlActivity
## 169 com.googlecode.androidannotations.test15.FromHtmlActivity
## 170 com.googlecode.androidannotations.test15.TracedActivity
## 171 com.googlecode.androidannotations.test15.TracedActivity
## 172 com.googlecode.androidannotations.test15.TracedActivity
## 173 com.googlecode.androidannotations.test15.TracedActivity
## 174 com.googlecode.androidannotations.test15.TracedActivity
## 175 com.googlecode.androidannotations.test15.TracedActivity
## 176 com.googlecode.androidannotations.test15.TransactionalActivity
## 177 com.googlecode.androidannotations.test15.TransactionalActivity
## 178 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 179 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 180 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 181 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 182 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 183 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 184 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 185 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 186 com.googlecode.androidannotations.test15.res.ResActivity
## 187 com.googlecode.androidannotations.test15.res.ResActivity
## 188 com.googlecode.androidannotations.test15.res.ResActivity
## 189 com.googlecode.androidannotations.test15.res.ResActivity
## 190 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 191 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 192 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 193 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 194 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 195 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 196 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 197 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 198 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 199 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 200 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 201 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 202 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 203 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 204 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 205 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 206 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 207 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 208 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 209 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 210 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 211 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 212 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 213 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 214 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 215 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 216 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 217 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 218 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 219 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 220 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 221 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 222 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 223 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 224 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 225 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 226 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 227 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 228 com.googlecode.androidannotations.test15.res.ResActivity
## 229 com.googlecode.androidannotations.test15.res.ResActivity
## 230 com.googlecode.androidannotations.test15.res.ResActivity
## 231 com.googlecode.androidannotations.test15.res.ResActivity
## 232 com.googlecode.androidannotations.test15.AbstractActivity
## 233 com.googlecode.androidannotations.test15.AbstractActivity
## 234 com.googlecode.androidannotations.test15.AbstractActivity
## 235 com.googlecode.androidannotations.test15.AbstractActivity
## 236 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 237 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 238 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 239 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 240 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 241 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 242 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 243 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 244 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 245 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 246 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 247 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 248 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 249 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 250 com.googlecode.androidannotations.test15.FromHtmlActivity
## 251 com.googlecode.androidannotations.test15.FromHtmlActivity
## 252 com.googlecode.androidannotations.test15.FromHtmlActivity
## 253 com.googlecode.androidannotations.test15.FromHtmlActivity
## 254 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 255 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 256 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 257 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 258 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 259 com.googlecode.androidannotations.test15.TracedActivity
## 260 com.googlecode.androidannotations.test15.TracedActivity
## 261 com.googlecode.androidannotations.test15.TracedActivity
## 262 com.googlecode.androidannotations.test15.TracedActivity
## 263 com.googlecode.androidannotations.test15.TracedActivity
## 264 com.googlecode.androidannotations.test15.TracedActivity
## 265 com.googlecode.androidannotations.test15.TransactionalActivity
## 266 com.googlecode.androidannotations.test15.TransactionalActivity
## 267 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 268 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 269 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 270 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 271 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 272 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 273 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 274 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 275 com.googlecode.androidannotations.test15.res.ResActivity
## 276 com.googlecode.androidannotations.test15.res.ResActivity
## 277 com.googlecode.androidannotations.test15.res.ResActivity
## 278 com.googlecode.androidannotations.test15.res.ResActivity
## 279 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 280 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 281 com.googlecode.androidannotations.test15.AbstractActivity
## 282 com.googlecode.androidannotations.test15.AbstractActivity
## 283 com.googlecode.androidannotations.test15.AbstractActivity
## 284 com.googlecode.androidannotations.test15.AbstractActivity
## 285 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 286 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 287 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 288 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 289 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 290 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 291 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 292 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 293 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 294 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 295 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 296 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 297 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 298 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 299 com.googlecode.androidannotations.test15.FromHtmlActivity
## 300 com.googlecode.androidannotations.test15.FromHtmlActivity
## 301 com.googlecode.androidannotations.test15.FromHtmlActivity
## 302 com.googlecode.androidannotations.test15.FromHtmlActivity
## 303 com.googlecode.androidannotations.test15.TracedActivity
## 304 com.googlecode.androidannotations.test15.TracedActivity
## 305 com.googlecode.androidannotations.test15.TracedActivity
## 306 com.googlecode.androidannotations.test15.TracedActivity
## 307 com.googlecode.androidannotations.test15.TracedActivity
## 308 com.googlecode.androidannotations.test15.TracedActivity
## 309 com.googlecode.androidannotations.test15.TransactionalActivity
## 310 com.googlecode.androidannotations.test15.TransactionalActivity
## 311 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 312 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 313 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 314 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 315 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 316 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 317 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 318 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 319 com.googlecode.androidannotations.test15.res.ResActivity
## 320 com.googlecode.androidannotations.test15.res.ResActivity
## 321 com.googlecode.androidannotations.test15.res.ResActivity
## 322 com.googlecode.androidannotations.test15.res.ResActivity
## 323 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 324 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 325 com.googlecode.androidannotations.test15.AbstractActivity
## 326 com.googlecode.androidannotations.test15.AbstractActivity
## 327 com.googlecode.androidannotations.test15.AbstractActivity
## 328 com.googlecode.androidannotations.test15.AbstractActivity
## 329 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 330 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 331 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 332 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 333 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 334 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 335 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 336 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 337 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 338 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 339 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 340 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 341 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 342 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 343 com.googlecode.androidannotations.test15.FromHtmlActivity
## 344 com.googlecode.androidannotations.test15.FromHtmlActivity
## 345 com.googlecode.androidannotations.test15.FromHtmlActivity
## 346 com.googlecode.androidannotations.test15.FromHtmlActivity
## 347 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 348 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 349 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 350 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 351 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 352 com.googlecode.androidannotations.test15.TracedActivity
## 353 com.googlecode.androidannotations.test15.TracedActivity
## 354 com.googlecode.androidannotations.test15.TracedActivity
## 355 com.googlecode.androidannotations.test15.TracedActivity
## 356 com.googlecode.androidannotations.test15.TracedActivity
## 357 com.googlecode.androidannotations.test15.TracedActivity
## 358 com.googlecode.androidannotations.test15.TransactionalActivity
## 359 com.googlecode.androidannotations.test15.TransactionalActivity
## 360 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 361 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 362 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 363 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 364 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 365 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 366 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 367 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 368 com.googlecode.androidannotations.test15.res.ResActivity
## 369 com.googlecode.androidannotations.test15.res.ResActivity
## 370 com.googlecode.androidannotations.test15.res.ResActivity
## 371 com.googlecode.androidannotations.test15.res.ResActivity
## 372 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 373 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 374 com.googlecode.androidannotations.test15.AbstractActivity
## 375 com.googlecode.androidannotations.test15.AbstractActivity
## 376 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 377 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 378 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 379 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 380 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 381 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 382 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 383 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 384 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 385 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 386 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 387 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 388 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 389 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 390 com.googlecode.androidannotations.test15.FromHtmlActivity
## 391 com.googlecode.androidannotations.test15.FromHtmlActivity
## 392 com.googlecode.androidannotations.test15.FromHtmlActivity
## 393 com.googlecode.androidannotations.test15.FromHtmlActivity
## 394 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 395 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 396 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 397 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 398 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 399 com.googlecode.androidannotations.test15.TracedActivity
## 400 com.googlecode.androidannotations.test15.TracedActivity
## 401 com.googlecode.androidannotations.test15.TracedActivity
## 402 com.googlecode.androidannotations.test15.TracedActivity
## 403 com.googlecode.androidannotations.test15.TracedActivity
## 404 com.googlecode.androidannotations.test15.TracedActivity
## 405 com.googlecode.androidannotations.test15.TransactionalActivity
## 406 com.googlecode.androidannotations.test15.TransactionalActivity
## 407 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 408 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 409 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 410 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 411 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 412 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 413 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 414 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 415 com.googlecode.androidannotations.test15.res.ResActivity
## 416 com.googlecode.androidannotations.test15.res.ResActivity
## 417 com.googlecode.androidannotations.test15.res.ResActivity
## 418 com.googlecode.androidannotations.test15.res.ResActivity
## 419 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 420 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 421 com.googlecode.androidannotations.test15.AbstractActivity
## 422 com.googlecode.androidannotations.test15.AbstractActivity
## 423 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 424 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 425 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 426 com.googlecode.androidannotations.test15.ApplicationInjectedActivity
## 427 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 428 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 429 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 430 com.googlecode.androidannotations.test15.ClicksHandledActivity
## 431 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 432 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 433 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 434 com.googlecode.androidannotations.test15.EmptyActivityWithLayout
## 435 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 436 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayout
## 437 com.googlecode.androidannotations.test15.FromHtmlActivity
## 438 com.googlecode.androidannotations.test15.FromHtmlActivity
## 439 com.googlecode.androidannotations.test15.FromHtmlActivity
## 440 com.googlecode.androidannotations.test15.FromHtmlActivity
## 441 com.googlecode.androidannotations.test15.ItemClicksHandledActivity
## 442 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 443 com.googlecode.androidannotations.test15.LongClicksHandledActivity
## 444 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 445 com.googlecode.androidannotations.test15.TouchesHandledActivity
## 446 com.googlecode.androidannotations.test15.TracedActivity
## 447 com.googlecode.androidannotations.test15.TracedActivity
## 448 com.googlecode.androidannotations.test15.TracedActivity
## 449 com.googlecode.androidannotations.test15.TracedActivity
## 450 com.googlecode.androidannotations.test15.TracedActivity
## 451 com.googlecode.androidannotations.test15.TracedActivity
## 452 com.googlecode.androidannotations.test15.TransactionalActivity
## 453 com.googlecode.androidannotations.test15.TransactionalActivity
## 454 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 455 com.googlecode.androidannotations.test15.ViewsInjectedActivity
## 456 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 457 com.googlecode.androidannotations.test15.menu.OptionsMenuActivity
## 458 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 459 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 460 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 461 com.googlecode.androidannotations.test15.prefs.PrefsActivity
## 462 com.googlecode.androidannotations.test15.res.ResActivity
## 463 com.googlecode.androidannotations.test15.res.ResActivity
## 464 com.googlecode.androidannotations.test15.res.ResActivity
## 465 com.googlecode.androidannotations.test15.res.ResActivity
## 466 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 467 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleModule
## 468 org.androidannotations.helper.AndroidManifestFinder
## 469 org.androidannotations.helper.AndroidManifestFinder
## 470 org.androidannotations.test15.AbstractActivity
## 471 org.androidannotations.test15.AbstractActivity
## 472 org.androidannotations.test15.ApplicationInjectedActivity
## 473 org.androidannotations.test15.ApplicationInjectedActivity
## 474 org.androidannotations.test15.ApplicationInjectedActivity
## 475 org.androidannotations.test15.ApplicationInjectedActivity
## 476 org.androidannotations.test15.AwaitingResultFragment
## 477 org.androidannotations.test15.AwaitingResultFragment
## 478 org.androidannotations.test15.BackpressedActivity
## 479 org.androidannotations.test15.BackpressedActivity
## 480 org.androidannotations.test15.CheckedChangeHandledActivity
## 481 org.androidannotations.test15.CheckedChangeHandledActivity
## 482 org.androidannotations.test15.CheckedChangeHandledActivity
## 483 org.androidannotations.test15.CheckedChangeHandledActivity
## 484 org.androidannotations.test15.ClicksHandledActivity
## 485 org.androidannotations.test15.ClicksHandledActivity
## 486 org.androidannotations.test15.ClicksHandledActivity
## 487 org.androidannotations.test15.ClicksHandledActivity
## 488 org.androidannotations.test15.EmptyActivityWithLayout
## 489 org.androidannotations.test15.EmptyActivityWithLayout
## 490 org.androidannotations.test15.EmptyActivityWithLayout
## 491 org.androidannotations.test15.EmptyActivityWithLayout
## 492 org.androidannotations.test15.FocusChangeHandledActivity
## 493 org.androidannotations.test15.FocusChangeHandledActivity
## 494 org.androidannotations.test15.FocusChangeHandledActivity
## 495 org.androidannotations.test15.FocusChangeHandledActivity
## 496 org.androidannotations.test15.FromHtmlActivity
## 497 org.androidannotations.test15.FromHtmlActivity
## 498 org.androidannotations.test15.FromHtmlActivity
## 499 org.androidannotations.test15.FromHtmlActivity
## 500 org.androidannotations.test15.ItemClicksHandledActivity
## 501 org.androidannotations.test15.ItemClicksHandledActivity
## 502 org.androidannotations.test15.LongClicksHandledActivity
## 503 org.androidannotations.test15.LongClicksHandledActivity
## 504 org.androidannotations.test15.LongClicksHandledActivity
## 505 org.androidannotations.test15.LongClicksHandledActivity
## 506 org.androidannotations.test15.SeekBarChangeListenedActivity
## 507 org.androidannotations.test15.SeekBarChangeListenedActivity
## 508 org.androidannotations.test15.SSLConnection
## 509 org.androidannotations.test15.SSLConnection
## 510 org.androidannotations.test15.SSLConnection
## 511 org.androidannotations.test15.SSLConnection
## 512 org.androidannotations.test15.TextWatchedActivity
## 513 org.androidannotations.test15.TextWatchedActivity
## 514 org.androidannotations.test15.TouchesHandledActivity
## 515 org.androidannotations.test15.TouchesHandledActivity
## 516 org.androidannotations.test15.TouchesHandledActivity
## 517 org.androidannotations.test15.TouchesHandledActivity
## 518 org.androidannotations.test15.TransactionalActivity
## 519 org.androidannotations.test15.TransactionalActivity
## 520 org.androidannotations.test15.ViewsInjectedActivity
## 521 org.androidannotations.test15.ViewsInjectedActivity
## 522 org.androidannotations.test15.afterinject.AfterInjectActivity
## 523 org.androidannotations.test15.afterinject.AfterInjectActivity
## 524 org.androidannotations.test15.afterinject.AfterInjectActivity
## 525 org.androidannotations.test15.afterinject.AfterInjectActivity
## 526 org.androidannotations.test15.afterinject.AfterInjectBean
## 527 org.androidannotations.test15.afterinject.AfterInjectBean
## 528 org.androidannotations.test15.afterviews.AfterViewsActivity
## 529 org.androidannotations.test15.afterviews.AfterViewsActivity
## 530 org.androidannotations.test15.afterviews.AfterViewsActivity
## 531 org.androidannotations.test15.afterviews.AfterViewsActivity
## 532 org.androidannotations.test15.ebean.BeanInjectedActivity
## 533 org.androidannotations.test15.ebean.BeanInjectedActivity
## 534 org.androidannotations.test15.ebean.BeanInjectedActivity
## 535 org.androidannotations.test15.ebean.BeanInjectedActivity
## 536 org.androidannotations.test15.ebean.BeanInjectedActivity
## 537 org.androidannotations.test15.ebean.BeanInjectedActivity
## 538 org.androidannotations.test15.ebean.SomeBean
## 539 org.androidannotations.test15.ebean.SomeBean
## 540 org.androidannotations.test15.ebean.SomeBean
## 541 org.androidannotations.test15.ebean.SomeBean
## 542 org.androidannotations.test15.ebean.SomeSingleton
## 543 org.androidannotations.test15.ebean.SomeSingleton
## 544 org.androidannotations.test15.ebean.SomeSingleton
## 545 org.androidannotations.test15.ebean.SomeSingleton
## 546 org.androidannotations.test15.efragment.MyFragmentActivity
## 547 org.androidannotations.test15.efragment.MyFragmentActivity
## 548 org.androidannotations.test15.efragment.MyFragmentActivity
## 549 org.androidannotations.test15.efragment.MyFragmentActivity
## 550 org.androidannotations.test15.efragment.MyFragmentActivity
## 551 org.androidannotations.test15.efragment.MyFragmentActivity
## 552 org.androidannotations.test15.efragment.MyFragmentActivity
## 553 org.androidannotations.test15.efragment.MyFragmentActivity
## 554 org.androidannotations.test15.efragment.MyListFragment
## 555 org.androidannotations.test15.efragment.MyListFragment
## 556 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 557 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 558 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 559 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 560 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 561 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 562 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 563 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 564 org.androidannotations.test15.eview.CustomButton
## 565 org.androidannotations.test15.eview.CustomButton
## 566 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 567 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 568 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 569 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 570 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 571 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 572 org.androidannotations.test15.ormlite.OrmLiteActivity
## 573 org.androidannotations.test15.ormlite.OrmLiteActivity
## 574 org.androidannotations.test15.ormlite.OrmLiteActivity
## 575 org.androidannotations.test15.ormlite.OrmLiteActivity
## 576 org.androidannotations.test15.prefs.PrefsActivity
## 577 org.androidannotations.test15.prefs.PrefsActivity
## 578 org.androidannotations.test15.prefs.PrefsActivity
## 579 org.androidannotations.test15.prefs.PrefsActivity
## 580 org.androidannotations.test15.res.ResActivity
## 581 org.androidannotations.test15.res.ResActivity
## 582 org.androidannotations.test15.res.ResActivity
## 583 org.androidannotations.test15.res.ResActivity
## 584 org.androidannotations.test15.rest.MyService
## 585 org.androidannotations.test15.rest.MyService
## 586 org.androidannotations.test15.roboguice.RobolectricSampleModule
## 587 org.androidannotations.test15.roboguice.RobolectricSampleModule
## 588 org.androidannotations.test15.sherlock.MySherlockActivity
## 589 org.androidannotations.test15.sherlock.MySherlockActivity
## 590 org.androidannotations.helper.AndroidManifestFinder
## 591 org.androidannotations.helper.AndroidManifestFinder
## 592 org.androidannotations.logger.formatter.Formatter
## 593 org.androidannotations.logger.formatter.Formatter
## 594 org.androidannotations.logger.formatter.Formatter
## 595 org.androidannotations.logger.formatter.Formatter
## 596 org.androidannotations.logger.formatter.Formatter
## 597 org.androidannotations.logger.formatter.Formatter
## 598 org.androidannotations.logger.formatter.Formatter
## 599 org.androidannotations.logger.formatter.Formatter
## 600 org.androidannotations.logger.formatter.Formatter
## 601 org.androidannotations.logger.formatter.Formatter
## 602 org.androidannotations.logger.formatter.Formatter
## 603 org.androidannotations.logger.formatter.Formatter
## 604 org.androidannotations.logger.formatter.Formatter
## 605 org.androidannotations.logger.formatter.Formatter
## 606 org.androidannotations.logger.Logger
## 607 org.androidannotations.logger.Logger
## 608 org.androidannotations.logger.Logger
## 609 org.androidannotations.logger.Logger
## 610 org.androidannotations.logger.Logger
## 611 org.androidannotations.logger.Logger
## 612 org.androidannotations.logger.Logger
## 613 org.androidannotations.logger.Logger
## 614 org.androidannotations.logger.Logger
## 615 org.androidannotations.logger.Logger
## 616 org.androidannotations.logger.Logger
## 617 org.androidannotations.logger.Logger
## 618 org.androidannotations.logger.Logger
## 619 org.androidannotations.logger.Logger
## 620 org.androidannotations.test15.AbstractActivity
## 621 org.androidannotations.test15.AbstractActivity
## 622 org.androidannotations.test15.ApplicationInjectedActivity
## 623 org.androidannotations.test15.ApplicationInjectedActivity
## 624 org.androidannotations.test15.ApplicationInjectedActivity
## 625 org.androidannotations.test15.ApplicationInjectedActivity
## 626 org.androidannotations.test15.AwaitingResultFragment
## 627 org.androidannotations.test15.AwaitingResultFragment
## 628 org.androidannotations.test15.BackpressedActivity
## 629 org.androidannotations.test15.BackpressedActivity
## 630 org.androidannotations.test15.CheckedChangeHandledActivity
## 631 org.androidannotations.test15.CheckedChangeHandledActivity
## 632 org.androidannotations.test15.CheckedChangeHandledActivity
## 633 org.androidannotations.test15.CheckedChangeHandledActivity
## 634 org.androidannotations.test15.ClicksHandledActivity
## 635 org.androidannotations.test15.ClicksHandledActivity
## 636 org.androidannotations.test15.ClicksHandledActivity
## 637 org.androidannotations.test15.ClicksHandledActivity
## 638 org.androidannotations.test15.EmptyActivityWithLayout
## 639 org.androidannotations.test15.EmptyActivityWithLayout
## 640 org.androidannotations.test15.EmptyActivityWithLayout
## 641 org.androidannotations.test15.EmptyActivityWithLayout
## 642 org.androidannotations.test15.FocusChangeHandledActivity
## 643 org.androidannotations.test15.FocusChangeHandledActivity
## 644 org.androidannotations.test15.FocusChangeHandledActivity
## 645 org.androidannotations.test15.FocusChangeHandledActivity
## 646 org.androidannotations.test15.FromHtmlActivity
## 647 org.androidannotations.test15.FromHtmlActivity
## 648 org.androidannotations.test15.FromHtmlActivity
## 649 org.androidannotations.test15.FromHtmlActivity
## 650 org.androidannotations.test15.ItemClicksHandledActivity
## 651 org.androidannotations.test15.ItemClicksHandledActivity
## 652 org.androidannotations.test15.LongClicksHandledActivity
## 653 org.androidannotations.test15.LongClicksHandledActivity
## 654 org.androidannotations.test15.LongClicksHandledActivity
## 655 org.androidannotations.test15.LongClicksHandledActivity
## 656 org.androidannotations.test15.SeekBarChangeListenedActivity
## 657 org.androidannotations.test15.SeekBarChangeListenedActivity
## 658 org.androidannotations.test15.SSLConnection
## 659 org.androidannotations.test15.SSLConnection
## 660 org.androidannotations.test15.SSLConnection
## 661 org.androidannotations.test15.SSLConnection
## 662 org.androidannotations.test15.TextWatchedActivity
## 663 org.androidannotations.test15.TextWatchedActivity
## 664 org.androidannotations.test15.TouchesHandledActivity
## 665 org.androidannotations.test15.TouchesHandledActivity
## 666 org.androidannotations.test15.TouchesHandledActivity
## 667 org.androidannotations.test15.TouchesHandledActivity
## 668 org.androidannotations.test15.TransactionalActivity
## 669 org.androidannotations.test15.TransactionalActivity
## 670 org.androidannotations.test15.ViewsInjectedActivity
## 671 org.androidannotations.test15.ViewsInjectedActivity
## 672 org.androidannotations.test15.afterinject.AfterInjectActivity
## 673 org.androidannotations.test15.afterinject.AfterInjectActivity
## 674 org.androidannotations.test15.afterinject.AfterInjectActivity
## 675 org.androidannotations.test15.afterinject.AfterInjectActivity
## 676 org.androidannotations.test15.afterinject.AfterInjectBean
## 677 org.androidannotations.test15.afterinject.AfterInjectBean
## 678 org.androidannotations.test15.afterviews.AfterViewsActivity
## 679 org.androidannotations.test15.afterviews.AfterViewsActivity
## 680 org.androidannotations.test15.afterviews.AfterViewsActivity
## 681 org.androidannotations.test15.afterviews.AfterViewsActivity
## 682 org.androidannotations.test15.ebean.BeanInjectedActivity
## 683 org.androidannotations.test15.ebean.BeanInjectedActivity
## 684 org.androidannotations.test15.ebean.BeanInjectedActivity
## 685 org.androidannotations.test15.ebean.BeanInjectedActivity
## 686 org.androidannotations.test15.ebean.BeanInjectedActivity
## 687 org.androidannotations.test15.ebean.BeanInjectedActivity
## 688 org.androidannotations.test15.ebean.SomeBean
## 689 org.androidannotations.test15.ebean.SomeBean
## 690 org.androidannotations.test15.ebean.SomeBean
## 691 org.androidannotations.test15.ebean.SomeBean
## 692 org.androidannotations.test15.ebean.SomeSingleton
## 693 org.androidannotations.test15.ebean.SomeSingleton
## 694 org.androidannotations.test15.ebean.SomeSingleton
## 695 org.androidannotations.test15.ebean.SomeSingleton
## 696 org.androidannotations.test15.efragment.MyFragmentActivity
## 697 org.androidannotations.test15.efragment.MyFragmentActivity
## 698 org.androidannotations.test15.efragment.MyFragmentActivity
## 699 org.androidannotations.test15.efragment.MyFragmentActivity
## 700 org.androidannotations.test15.efragment.MyFragmentActivity
## 701 org.androidannotations.test15.efragment.MyFragmentActivity
## 702 org.androidannotations.test15.efragment.MyFragmentActivity
## 703 org.androidannotations.test15.efragment.MyFragmentActivity
## 704 org.androidannotations.test15.efragment.MyListFragment
## 705 org.androidannotations.test15.efragment.MyListFragment
## 706 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 707 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 708 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 709 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 710 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 711 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 712 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 713 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 714 org.androidannotations.test15.eview.CustomButton
## 715 org.androidannotations.test15.eview.CustomButton
## 716 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 717 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 718 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 719 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 720 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 721 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 722 org.androidannotations.test15.ormlite.OrmLiteActivity
## 723 org.androidannotations.test15.ormlite.OrmLiteActivity
## 724 org.androidannotations.test15.ormlite.OrmLiteActivity
## 725 org.androidannotations.test15.ormlite.OrmLiteActivity
## 726 org.androidannotations.test15.prefs.PrefsActivity
## 727 org.androidannotations.test15.prefs.PrefsActivity
## 728 org.androidannotations.test15.prefs.PrefsActivity
## 729 org.androidannotations.test15.prefs.PrefsActivity
## 730 org.androidannotations.test15.res.ResActivity
## 731 org.androidannotations.test15.res.ResActivity
## 732 org.androidannotations.test15.res.ResActivity
## 733 org.androidannotations.test15.res.ResActivity
## 734 org.androidannotations.test15.rest.MyService
## 735 org.androidannotations.test15.rest.MyService
## 736 org.androidannotations.test15.roboguice.RobolectricSampleModule
## 737 org.androidannotations.test15.roboguice.RobolectricSampleModule
## 738 org.androidannotations.test15.sherlock.MySherlockActivity
## 739 org.androidannotations.test15.sherlock.MySherlockActivity
## 740 org.androidannotations.helper.AndroidManifestFinder
## 741 org.androidannotations.helper.AndroidManifestFinder
## 742 org.androidannotations.helper.ValidatorParameterHelper
## 743 org.androidannotations.helper.ValidatorParameterHelper
## 744 org.androidannotations.helper.ValidatorParameterHelper
## 745 org.androidannotations.helper.ValidatorParameterHelper
## 746 org.androidannotations.helper.ValidatorParameterHelper
## 747 org.androidannotations.helper.ValidatorParameterHelper
## 748 org.androidannotations.helper.ValidatorParameterHelper
## 749 org.androidannotations.helper.ValidatorParameterHelper
## 750 org.androidannotations.helper.ValidatorParameterHelper
## 751 org.androidannotations.helper.ValidatorParameterHelper
## 752 org.androidannotations.helper.ValidatorParameterHelper
## 753 org.androidannotations.helper.ValidatorParameterHelper
## 754 org.androidannotations.logger.formatter.Formatter
## 755 org.androidannotations.logger.formatter.Formatter
## 756 org.androidannotations.logger.formatter.Formatter
## 757 org.androidannotations.logger.formatter.Formatter
## 758 org.androidannotations.logger.formatter.Formatter
## 759 org.androidannotations.logger.formatter.Formatter
## 760 org.androidannotations.logger.formatter.Formatter
## 761 org.androidannotations.logger.formatter.Formatter
## 762 org.androidannotations.logger.formatter.Formatter
## 763 org.androidannotations.logger.formatter.Formatter
## 764 org.androidannotations.logger.formatter.Formatter
## 765 org.androidannotations.logger.formatter.Formatter
## 766 org.androidannotations.logger.formatter.Formatter
## 767 org.androidannotations.logger.formatter.Formatter
## 768 org.androidannotations.logger.Logger
## 769 org.androidannotations.logger.Logger
## 770 org.androidannotations.logger.Logger
## 771 org.androidannotations.logger.Logger
## 772 org.androidannotations.logger.Logger
## 773 org.androidannotations.logger.Logger
## 774 org.androidannotations.logger.Logger
## 775 org.androidannotations.logger.Logger
## 776 org.androidannotations.logger.Logger
## 777 org.androidannotations.logger.Logger
## 778 org.androidannotations.logger.Logger
## 779 org.androidannotations.logger.Logger
## 780 org.androidannotations.logger.Logger
## 781 org.androidannotations.logger.Logger
## 782 org.androidannotations.test15.AbstractActivity
## 783 org.androidannotations.test15.AbstractActivity
## 784 org.androidannotations.test15.ApplicationInjectedActivity
## 785 org.androidannotations.test15.ApplicationInjectedActivity
## 786 org.androidannotations.test15.ApplicationInjectedActivity
## 787 org.androidannotations.test15.ApplicationInjectedActivity
## 788 org.androidannotations.test15.AwaitingResultFragment
## 789 org.androidannotations.test15.AwaitingResultFragment
## 790 org.androidannotations.test15.BackpressedActivity
## 791 org.androidannotations.test15.BackpressedActivity
## 792 org.androidannotations.test15.CheckedChangeHandledActivity
## 793 org.androidannotations.test15.CheckedChangeHandledActivity
## 794 org.androidannotations.test15.CheckedChangeHandledActivity
## 795 org.androidannotations.test15.CheckedChangeHandledActivity
## 796 org.androidannotations.test15.ClicksHandledActivity
## 797 org.androidannotations.test15.ClicksHandledActivity
## 798 org.androidannotations.test15.ClicksHandledActivity
## 799 org.androidannotations.test15.ClicksHandledActivity
## 800 org.androidannotations.test15.EmptyActivityWithLayout
## 801 org.androidannotations.test15.EmptyActivityWithLayout
## 802 org.androidannotations.test15.EmptyActivityWithLayout
## 803 org.androidannotations.test15.EmptyActivityWithLayout
## 804 org.androidannotations.test15.FocusChangeHandledActivity
## 805 org.androidannotations.test15.FocusChangeHandledActivity
## 806 org.androidannotations.test15.FocusChangeHandledActivity
## 807 org.androidannotations.test15.FocusChangeHandledActivity
## 808 org.androidannotations.test15.FromHtmlActivity
## 809 org.androidannotations.test15.FromHtmlActivity
## 810 org.androidannotations.test15.FromHtmlActivity
## 811 org.androidannotations.test15.FromHtmlActivity
## 812 org.androidannotations.test15.ItemClicksHandledActivity
## 813 org.androidannotations.test15.ItemClicksHandledActivity
## 814 org.androidannotations.test15.LongClicksHandledActivity
## 815 org.androidannotations.test15.LongClicksHandledActivity
## 816 org.androidannotations.test15.LongClicksHandledActivity
## 817 org.androidannotations.test15.LongClicksHandledActivity
## 818 org.androidannotations.test15.SeekBarChangeListenedActivity
## 819 org.androidannotations.test15.SeekBarChangeListenedActivity
## 820 org.androidannotations.test15.SSLConnection
## 821 org.androidannotations.test15.SSLConnection
## 822 org.androidannotations.test15.SSLConnection
## 823 org.androidannotations.test15.SSLConnection
## 824 org.androidannotations.test15.TextWatchedActivity
## 825 org.androidannotations.test15.TextWatchedActivity
## 826 org.androidannotations.test15.TouchesHandledActivity
## 827 org.androidannotations.test15.TouchesHandledActivity
## 828 org.androidannotations.test15.TouchesHandledActivity
## 829 org.androidannotations.test15.TouchesHandledActivity
## 830 org.androidannotations.test15.TransactionalActivity
## 831 org.androidannotations.test15.TransactionalActivity
## 832 org.androidannotations.test15.ViewsInjectedActivity
## 833 org.androidannotations.test15.ViewsInjectedActivity
## 834 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 835 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 836 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 837 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 838 org.androidannotations.test15.afterinject.AfterInjectActivity
## 839 org.androidannotations.test15.afterinject.AfterInjectActivity
## 840 org.androidannotations.test15.afterinject.AfterInjectActivity
## 841 org.androidannotations.test15.afterinject.AfterInjectActivity
## 842 org.androidannotations.test15.afterinject.AfterInjectBean
## 843 org.androidannotations.test15.afterinject.AfterInjectBean
## 844 org.androidannotations.test15.afterviews.AfterViewsActivity
## 845 org.androidannotations.test15.afterviews.AfterViewsActivity
## 846 org.androidannotations.test15.afterviews.AfterViewsActivity
## 847 org.androidannotations.test15.afterviews.AfterViewsActivity
## 848 org.androidannotations.test15.ebean.BeanInjectedActivity
## 849 org.androidannotations.test15.ebean.BeanInjectedActivity
## 850 org.androidannotations.test15.ebean.BeanInjectedActivity
## 851 org.androidannotations.test15.ebean.BeanInjectedActivity
## 852 org.androidannotations.test15.ebean.BeanInjectedActivity
## 853 org.androidannotations.test15.ebean.BeanInjectedActivity
## 854 org.androidannotations.test15.ebean.SomeBean
## 855 org.androidannotations.test15.ebean.SomeBean
## 856 org.androidannotations.test15.ebean.SomeBean
## 857 org.androidannotations.test15.ebean.SomeBean
## 858 org.androidannotations.test15.ebean.SomeSingleton
## 859 org.androidannotations.test15.ebean.SomeSingleton
## 860 org.androidannotations.test15.ebean.SomeSingleton
## 861 org.androidannotations.test15.ebean.SomeSingleton
## 862 org.androidannotations.test15.efragment.MyFragmentActivity
## 863 org.androidannotations.test15.efragment.MyFragmentActivity
## 864 org.androidannotations.test15.efragment.MyFragmentActivity
## 865 org.androidannotations.test15.efragment.MyFragmentActivity
## 866 org.androidannotations.test15.efragment.MyFragmentActivity
## 867 org.androidannotations.test15.efragment.MyFragmentActivity
## 868 org.androidannotations.test15.efragment.MyFragmentActivity
## 869 org.androidannotations.test15.efragment.MyFragmentActivity
## 870 org.androidannotations.test15.efragment.MyListFragment
## 871 org.androidannotations.test15.efragment.MyListFragment
## 872 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 873 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 874 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 875 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 876 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 877 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 878 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 879 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 880 org.androidannotations.test15.eview.CustomButton
## 881 org.androidannotations.test15.eview.CustomButton
## 882 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 883 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 884 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 885 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 886 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 887 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 888 org.androidannotations.test15.ormlite.OrmLiteActivity
## 889 org.androidannotations.test15.ormlite.OrmLiteActivity
## 890 org.androidannotations.test15.ormlite.OrmLiteActivity
## 891 org.androidannotations.test15.ormlite.OrmLiteActivity
## 892 org.androidannotations.test15.prefs.PrefsActivity
## 893 org.androidannotations.test15.prefs.PrefsActivity
## 894 org.androidannotations.test15.prefs.PrefsActivity
## 895 org.androidannotations.test15.prefs.PrefsActivity
## 896 org.androidannotations.test15.receiver.ActivityWithReceiver
## 897 org.androidannotations.test15.receiver.ActivityWithReceiver
## 898 org.androidannotations.test15.receiver.FragmentWithReceiver
## 899 org.androidannotations.test15.receiver.FragmentWithReceiver
## 900 org.androidannotations.test15.res.ResActivity
## 901 org.androidannotations.test15.res.ResActivity
## 902 org.androidannotations.test15.res.ResActivity
## 903 org.androidannotations.test15.res.ResActivity
## 904 org.androidannotations.test15.rest.MyService
## 905 org.androidannotations.test15.rest.MyService
## 906 org.androidannotations.test15.sherlock.MySherlockActivity
## 907 org.androidannotations.test15.sherlock.MySherlockActivity
## 908 org.androidannotations.test15.trace.TracedActivity
## 909 org.androidannotations.test15.trace.TracedActivity
## 910 org.androidannotations.test15.trace.TracedActivity
## 911 org.androidannotations.test15.trace.TracedActivity
## 912 org.androidannotations.helper.AndroidManifestFinder
## 913 org.androidannotations.helper.AndroidManifestFinder
## 914 org.androidannotations.helper.ValidatorParameterHelper
## 915 org.androidannotations.helper.ValidatorParameterHelper
## 916 org.androidannotations.helper.ValidatorParameterHelper
## 917 org.androidannotations.helper.ValidatorParameterHelper
## 918 org.androidannotations.helper.ValidatorParameterHelper
## 919 org.androidannotations.helper.ValidatorParameterHelper
## 920 org.androidannotations.helper.ValidatorParameterHelper
## 921 org.androidannotations.helper.ValidatorParameterHelper
## 922 org.androidannotations.helper.ValidatorParameterHelper
## 923 org.androidannotations.helper.ValidatorParameterHelper
## 924 org.androidannotations.helper.ValidatorParameterHelper
## 925 org.androidannotations.helper.ValidatorParameterHelper
## 926 org.androidannotations.logger.formatter.Formatter
## 927 org.androidannotations.logger.formatter.Formatter
## 928 org.androidannotations.logger.formatter.Formatter
## 929 org.androidannotations.logger.formatter.Formatter
## 930 org.androidannotations.logger.formatter.Formatter
## 931 org.androidannotations.logger.formatter.Formatter
## 932 org.androidannotations.logger.formatter.Formatter
## 933 org.androidannotations.logger.formatter.Formatter
## 934 org.androidannotations.logger.formatter.Formatter
## 935 org.androidannotations.logger.formatter.Formatter
## 936 org.androidannotations.logger.formatter.Formatter
## 937 org.androidannotations.logger.formatter.Formatter
## 938 org.androidannotations.logger.formatter.Formatter
## 939 org.androidannotations.logger.formatter.Formatter
## 940 org.androidannotations.logger.Logger
## 941 org.androidannotations.logger.Logger
## 942 org.androidannotations.logger.Logger
## 943 org.androidannotations.logger.Logger
## 944 org.androidannotations.logger.Logger
## 945 org.androidannotations.logger.Logger
## 946 org.androidannotations.logger.Logger
## 947 org.androidannotations.logger.Logger
## 948 org.androidannotations.logger.Logger
## 949 org.androidannotations.logger.Logger
## 950 org.androidannotations.logger.Logger
## 951 org.androidannotations.logger.Logger
## 952 org.androidannotations.logger.Logger
## 953 org.androidannotations.logger.Logger
## 954 org.androidannotations.test15.AbstractActivity
## 955 org.androidannotations.test15.AbstractActivity
## 956 org.androidannotations.test15.ApplicationInjectedActivity
## 957 org.androidannotations.test15.ApplicationInjectedActivity
## 958 org.androidannotations.test15.ApplicationInjectedActivity
## 959 org.androidannotations.test15.ApplicationInjectedActivity
## 960 org.androidannotations.test15.AwaitingResultFragment
## 961 org.androidannotations.test15.AwaitingResultFragment
## 962 org.androidannotations.test15.BackpressedActivity
## 963 org.androidannotations.test15.BackpressedActivity
## 964 org.androidannotations.test15.CheckedChangeHandledActivity
## 965 org.androidannotations.test15.CheckedChangeHandledActivity
## 966 org.androidannotations.test15.CheckedChangeHandledActivity
## 967 org.androidannotations.test15.CheckedChangeHandledActivity
## 968 org.androidannotations.test15.ClicksHandledActivity
## 969 org.androidannotations.test15.ClicksHandledActivity
## 970 org.androidannotations.test15.ClicksHandledActivity
## 971 org.androidannotations.test15.ClicksHandledActivity
## 972 org.androidannotations.test15.EmptyActivityWithLayout
## 973 org.androidannotations.test15.EmptyActivityWithLayout
## 974 org.androidannotations.test15.EmptyActivityWithLayout
## 975 org.androidannotations.test15.EmptyActivityWithLayout
## 976 org.androidannotations.test15.FocusChangeHandledActivity
## 977 org.androidannotations.test15.FocusChangeHandledActivity
## 978 org.androidannotations.test15.FocusChangeHandledActivity
## 979 org.androidannotations.test15.FocusChangeHandledActivity
## 980 org.androidannotations.test15.FromHtmlActivity
## 981 org.androidannotations.test15.FromHtmlActivity
## 982 org.androidannotations.test15.FromHtmlActivity
## 983 org.androidannotations.test15.FromHtmlActivity
## 984 org.androidannotations.test15.ItemClicksHandledActivity
## 985 org.androidannotations.test15.ItemClicksHandledActivity
## 986 org.androidannotations.test15.LongClicksHandledActivity
## 987 org.androidannotations.test15.LongClicksHandledActivity
## 988 org.androidannotations.test15.LongClicksHandledActivity
## 989 org.androidannotations.test15.LongClicksHandledActivity
## 990 org.androidannotations.test15.SeekBarChangeListenedActivity
## 991 org.androidannotations.test15.SeekBarChangeListenedActivity
## 992 org.androidannotations.test15.SSLConnection
## 993 org.androidannotations.test15.SSLConnection
## 994 org.androidannotations.test15.SSLConnection
## 995 org.androidannotations.test15.SSLConnection
## 996 org.androidannotations.test15.TextWatchedActivity
## 997 org.androidannotations.test15.TextWatchedActivity
## 998 org.androidannotations.test15.TouchesHandledActivity
## 999 org.androidannotations.test15.TouchesHandledActivity
## 1000 org.androidannotations.test15.TouchesHandledActivity
## 1001 org.androidannotations.test15.TouchesHandledActivity
## 1002 org.androidannotations.test15.TransactionalActivity
## 1003 org.androidannotations.test15.TransactionalActivity
## 1004 org.androidannotations.test15.ViewsInjectedActivity
## 1005 org.androidannotations.test15.ViewsInjectedActivity
## 1006 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1007 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1008 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1009 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1010 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1011 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1012 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1013 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1014 org.androidannotations.test15.afterinject.AfterInjectBean
## 1015 org.androidannotations.test15.afterinject.AfterInjectBean
## 1016 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1017 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1018 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1019 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1020 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1021 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1022 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1023 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1024 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1025 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1026 org.androidannotations.test15.ebean.SomeBean
## 1027 org.androidannotations.test15.ebean.SomeBean
## 1028 org.androidannotations.test15.ebean.SomeBean
## 1029 org.androidannotations.test15.ebean.SomeBean
## 1030 org.androidannotations.test15.ebean.SomeSingleton
## 1031 org.androidannotations.test15.ebean.SomeSingleton
## 1032 org.androidannotations.test15.ebean.SomeSingleton
## 1033 org.androidannotations.test15.ebean.SomeSingleton
## 1034 org.androidannotations.test15.efragment.MyFragmentActivity
## 1035 org.androidannotations.test15.efragment.MyFragmentActivity
## 1036 org.androidannotations.test15.efragment.MyFragmentActivity
## 1037 org.androidannotations.test15.efragment.MyFragmentActivity
## 1038 org.androidannotations.test15.efragment.MyFragmentActivity
## 1039 org.androidannotations.test15.efragment.MyFragmentActivity
## 1040 org.androidannotations.test15.efragment.MyFragmentActivity
## 1041 org.androidannotations.test15.efragment.MyFragmentActivity
## 1042 org.androidannotations.test15.efragment.MyListFragment
## 1043 org.androidannotations.test15.efragment.MyListFragment
## 1044 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1045 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1046 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1047 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1048 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1049 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1050 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1051 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1052 org.androidannotations.test15.eview.CustomButton
## 1053 org.androidannotations.test15.eview.CustomButton
## 1054 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1055 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1056 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1057 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1058 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1059 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1060 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1061 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1062 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1063 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1064 org.androidannotations.test15.prefs.PrefsActivity
## 1065 org.androidannotations.test15.prefs.PrefsActivity
## 1066 org.androidannotations.test15.prefs.PrefsActivity
## 1067 org.androidannotations.test15.prefs.PrefsActivity
## 1068 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1069 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1070 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1071 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1072 org.androidannotations.test15.res.ResActivity
## 1073 org.androidannotations.test15.res.ResActivity
## 1074 org.androidannotations.test15.res.ResActivity
## 1075 org.androidannotations.test15.res.ResActivity
## 1076 org.androidannotations.test15.rest.MyService
## 1077 org.androidannotations.test15.rest.MyService
## 1078 org.androidannotations.test15.sherlock.MySherlockActivity
## 1079 org.androidannotations.test15.sherlock.MySherlockActivity
## 1080 org.androidannotations.test15.trace.TracedActivity
## 1081 org.androidannotations.test15.trace.TracedActivity
## 1082 org.androidannotations.test15.trace.TracedActivity
## 1083 org.androidannotations.test15.trace.TracedActivity
## 1084 org.androidannotations.helper.AndroidManifestFinder
## 1085 org.androidannotations.helper.AndroidManifestFinder
## 1086 org.androidannotations.helper.ValidatorParameterHelper
## 1087 org.androidannotations.helper.ValidatorParameterHelper
## 1088 org.androidannotations.helper.ValidatorParameterHelper
## 1089 org.androidannotations.helper.ValidatorParameterHelper
## 1090 org.androidannotations.helper.ValidatorParameterHelper
## 1091 org.androidannotations.helper.ValidatorParameterHelper
## 1092 org.androidannotations.helper.ValidatorParameterHelper
## 1093 org.androidannotations.helper.ValidatorParameterHelper
## 1094 org.androidannotations.helper.ValidatorParameterHelper
## 1095 org.androidannotations.helper.ValidatorParameterHelper
## 1096 org.androidannotations.helper.ValidatorParameterHelper
## 1097 org.androidannotations.helper.ValidatorParameterHelper
## 1098 org.androidannotations.logger.formatter.Formatter
## 1099 org.androidannotations.logger.formatter.Formatter
## 1100 org.androidannotations.logger.formatter.Formatter
## 1101 org.androidannotations.logger.formatter.Formatter
## 1102 org.androidannotations.logger.formatter.Formatter
## 1103 org.androidannotations.logger.formatter.Formatter
## 1104 org.androidannotations.logger.formatter.Formatter
## 1105 org.androidannotations.logger.formatter.Formatter
## 1106 org.androidannotations.logger.formatter.Formatter
## 1107 org.androidannotations.logger.formatter.Formatter
## 1108 org.androidannotations.logger.formatter.Formatter
## 1109 org.androidannotations.logger.formatter.Formatter
## 1110 org.androidannotations.logger.formatter.Formatter
## 1111 org.androidannotations.logger.formatter.Formatter
## 1112 org.androidannotations.logger.Logger
## 1113 org.androidannotations.logger.Logger
## 1114 org.androidannotations.logger.Logger
## 1115 org.androidannotations.logger.Logger
## 1116 org.androidannotations.logger.Logger
## 1117 org.androidannotations.logger.Logger
## 1118 org.androidannotations.logger.Logger
## 1119 org.androidannotations.logger.Logger
## 1120 org.androidannotations.logger.Logger
## 1121 org.androidannotations.logger.Logger
## 1122 org.androidannotations.logger.Logger
## 1123 org.androidannotations.logger.Logger
## 1124 org.androidannotations.logger.Logger
## 1125 org.androidannotations.logger.Logger
## 1126 org.androidannotations.test15.AbstractActivity
## 1127 org.androidannotations.test15.AbstractActivity
## 1128 org.androidannotations.test15.ApplicationInjectedActivity
## 1129 org.androidannotations.test15.ApplicationInjectedActivity
## 1130 org.androidannotations.test15.ApplicationInjectedActivity
## 1131 org.androidannotations.test15.ApplicationInjectedActivity
## 1132 org.androidannotations.test15.AwaitingResultFragment
## 1133 org.androidannotations.test15.AwaitingResultFragment
## 1134 org.androidannotations.test15.BackpressedActivity
## 1135 org.androidannotations.test15.BackpressedActivity
## 1136 org.androidannotations.test15.CheckedChangeHandledActivity
## 1137 org.androidannotations.test15.CheckedChangeHandledActivity
## 1138 org.androidannotations.test15.CheckedChangeHandledActivity
## 1139 org.androidannotations.test15.CheckedChangeHandledActivity
## 1140 org.androidannotations.test15.ClicksHandledActivity
## 1141 org.androidannotations.test15.ClicksHandledActivity
## 1142 org.androidannotations.test15.ClicksHandledActivity
## 1143 org.androidannotations.test15.ClicksHandledActivity
## 1144 org.androidannotations.test15.EmptyActivityWithLayout
## 1145 org.androidannotations.test15.EmptyActivityWithLayout
## 1146 org.androidannotations.test15.EmptyActivityWithLayout
## 1147 org.androidannotations.test15.EmptyActivityWithLayout
## 1148 org.androidannotations.test15.FocusChangeHandledActivity
## 1149 org.androidannotations.test15.FocusChangeHandledActivity
## 1150 org.androidannotations.test15.FocusChangeHandledActivity
## 1151 org.androidannotations.test15.FocusChangeHandledActivity
## 1152 org.androidannotations.test15.FromHtmlActivity
## 1153 org.androidannotations.test15.FromHtmlActivity
## 1154 org.androidannotations.test15.FromHtmlActivity
## 1155 org.androidannotations.test15.FromHtmlActivity
## 1156 org.androidannotations.test15.ItemClicksHandledActivity
## 1157 org.androidannotations.test15.ItemClicksHandledActivity
## 1158 org.androidannotations.test15.LongClicksHandledActivity
## 1159 org.androidannotations.test15.LongClicksHandledActivity
## 1160 org.androidannotations.test15.LongClicksHandledActivity
## 1161 org.androidannotations.test15.LongClicksHandledActivity
## 1162 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1163 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1164 org.androidannotations.test15.SSLConnection
## 1165 org.androidannotations.test15.SSLConnection
## 1166 org.androidannotations.test15.SSLConnection
## 1167 org.androidannotations.test15.SSLConnection
## 1168 org.androidannotations.test15.TextWatchedActivity
## 1169 org.androidannotations.test15.TextWatchedActivity
## 1170 org.androidannotations.test15.TouchesHandledActivity
## 1171 org.androidannotations.test15.TouchesHandledActivity
## 1172 org.androidannotations.test15.TouchesHandledActivity
## 1173 org.androidannotations.test15.TouchesHandledActivity
## 1174 org.androidannotations.test15.TransactionalActivity
## 1175 org.androidannotations.test15.TransactionalActivity
## 1176 org.androidannotations.test15.ViewsInjectedActivity
## 1177 org.androidannotations.test15.ViewsInjectedActivity
## 1178 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1179 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1180 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1181 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1182 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1183 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1184 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1185 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1186 org.androidannotations.test15.afterinject.AfterInjectBean
## 1187 org.androidannotations.test15.afterinject.AfterInjectBean
## 1188 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1189 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1190 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1191 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1192 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1193 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1194 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1195 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1196 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1197 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1198 org.androidannotations.test15.ebean.SomeBean
## 1199 org.androidannotations.test15.ebean.SomeBean
## 1200 org.androidannotations.test15.ebean.SomeBean
## 1201 org.androidannotations.test15.ebean.SomeBean
## 1202 org.androidannotations.test15.ebean.SomeSingleton
## 1203 org.androidannotations.test15.ebean.SomeSingleton
## 1204 org.androidannotations.test15.ebean.SomeSingleton
## 1205 org.androidannotations.test15.ebean.SomeSingleton
## 1206 org.androidannotations.test15.efragment.MyFragmentActivity
## 1207 org.androidannotations.test15.efragment.MyFragmentActivity
## 1208 org.androidannotations.test15.efragment.MyFragmentActivity
## 1209 org.androidannotations.test15.efragment.MyFragmentActivity
## 1210 org.androidannotations.test15.efragment.MyFragmentActivity
## 1211 org.androidannotations.test15.efragment.MyFragmentActivity
## 1212 org.androidannotations.test15.efragment.MyFragmentActivity
## 1213 org.androidannotations.test15.efragment.MyFragmentActivity
## 1214 org.androidannotations.test15.efragment.MyListFragment
## 1215 org.androidannotations.test15.efragment.MyListFragment
## 1216 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1217 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1218 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1219 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1220 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1221 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1222 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1223 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1224 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1225 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1226 org.androidannotations.test15.eview.CustomButton
## 1227 org.androidannotations.test15.eview.CustomButton
## 1228 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1229 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1230 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1231 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1232 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1233 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1234 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1235 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1236 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1237 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1238 org.androidannotations.test15.prefs.PrefsActivity
## 1239 org.androidannotations.test15.prefs.PrefsActivity
## 1240 org.androidannotations.test15.prefs.PrefsActivity
## 1241 org.androidannotations.test15.prefs.PrefsActivity
## 1242 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1243 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1244 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1245 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1246 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1247 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1248 org.androidannotations.test15.res.ResActivity
## 1249 org.androidannotations.test15.res.ResActivity
## 1250 org.androidannotations.test15.res.ResActivity
## 1251 org.androidannotations.test15.res.ResActivity
## 1252 org.androidannotations.test15.rest.MyService
## 1253 org.androidannotations.test15.rest.MyService
## 1254 org.androidannotations.test15.sherlock.MySherlockActivity
## 1255 org.androidannotations.test15.sherlock.MySherlockActivity
## 1256 org.androidannotations.test15.trace.TracedActivity
## 1257 org.androidannotations.test15.trace.TracedActivity
## 1258 org.androidannotations.test15.trace.TracedActivity
## 1259 org.androidannotations.test15.trace.TracedActivity
## 1260 org.androidannotations.helper.AndroidManifestFinder
## 1261 org.androidannotations.helper.AndroidManifestFinder
## 1262 org.androidannotations.helper.ValidatorParameterHelper
## 1263 org.androidannotations.helper.ValidatorParameterHelper
## 1264 org.androidannotations.helper.ValidatorParameterHelper
## 1265 org.androidannotations.helper.ValidatorParameterHelper
## 1266 org.androidannotations.helper.ValidatorParameterHelper
## 1267 org.androidannotations.helper.ValidatorParameterHelper
## 1268 org.androidannotations.helper.ValidatorParameterHelper
## 1269 org.androidannotations.helper.ValidatorParameterHelper
## 1270 org.androidannotations.helper.ValidatorParameterHelper
## 1271 org.androidannotations.helper.ValidatorParameterHelper
## 1272 org.androidannotations.helper.ValidatorParameterHelper
## 1273 org.androidannotations.helper.ValidatorParameterHelper
## 1274 org.androidannotations.logger.formatter.Formatter
## 1275 org.androidannotations.logger.formatter.Formatter
## 1276 org.androidannotations.logger.formatter.Formatter
## 1277 org.androidannotations.logger.formatter.Formatter
## 1278 org.androidannotations.logger.formatter.Formatter
## 1279 org.androidannotations.logger.formatter.Formatter
## 1280 org.androidannotations.logger.formatter.Formatter
## 1281 org.androidannotations.logger.formatter.Formatter
## 1282 org.androidannotations.logger.formatter.Formatter
## 1283 org.androidannotations.logger.formatter.Formatter
## 1284 org.androidannotations.logger.formatter.Formatter
## 1285 org.androidannotations.logger.formatter.Formatter
## 1286 org.androidannotations.logger.formatter.Formatter
## 1287 org.androidannotations.logger.formatter.Formatter
## 1288 org.androidannotations.logger.Logger
## 1289 org.androidannotations.logger.Logger
## 1290 org.androidannotations.logger.Logger
## 1291 org.androidannotations.logger.Logger
## 1292 org.androidannotations.logger.Logger
## 1293 org.androidannotations.logger.Logger
## 1294 org.androidannotations.logger.Logger
## 1295 org.androidannotations.logger.Logger
## 1296 org.androidannotations.logger.Logger
## 1297 org.androidannotations.logger.Logger
## 1298 org.androidannotations.logger.Logger
## 1299 org.androidannotations.logger.Logger
## 1300 org.androidannotations.logger.Logger
## 1301 org.androidannotations.logger.Logger
## 1302 org.androidannotations.test15.AbstractActivity
## 1303 org.androidannotations.test15.AbstractActivity
## 1304 org.androidannotations.test15.ApplicationInjectedActivity
## 1305 org.androidannotations.test15.ApplicationInjectedActivity
## 1306 org.androidannotations.test15.ApplicationInjectedActivity
## 1307 org.androidannotations.test15.ApplicationInjectedActivity
## 1308 org.androidannotations.test15.CheckedChangeHandledActivity
## 1309 org.androidannotations.test15.CheckedChangeHandledActivity
## 1310 org.androidannotations.test15.CheckedChangeHandledActivity
## 1311 org.androidannotations.test15.CheckedChangeHandledActivity
## 1312 org.androidannotations.test15.ClicksHandledActivity
## 1313 org.androidannotations.test15.ClicksHandledActivity
## 1314 org.androidannotations.test15.ClicksHandledActivity
## 1315 org.androidannotations.test15.ClicksHandledActivity
## 1316 org.androidannotations.test15.EmptyActivityWithLayout
## 1317 org.androidannotations.test15.EmptyActivityWithLayout
## 1318 org.androidannotations.test15.EmptyActivityWithLayout
## 1319 org.androidannotations.test15.EmptyActivityWithLayout
## 1320 org.androidannotations.test15.FocusChangeHandledActivity
## 1321 org.androidannotations.test15.FocusChangeHandledActivity
## 1322 org.androidannotations.test15.FocusChangeHandledActivity
## 1323 org.androidannotations.test15.FocusChangeHandledActivity
## 1324 org.androidannotations.test15.FromHtmlActivity
## 1325 org.androidannotations.test15.FromHtmlActivity
## 1326 org.androidannotations.test15.FromHtmlActivity
## 1327 org.androidannotations.test15.FromHtmlActivity
## 1328 org.androidannotations.test15.ItemClicksHandledActivity
## 1329 org.androidannotations.test15.ItemClicksHandledActivity
## 1330 org.androidannotations.test15.LongClicksHandledActivity
## 1331 org.androidannotations.test15.LongClicksHandledActivity
## 1332 org.androidannotations.test15.LongClicksHandledActivity
## 1333 org.androidannotations.test15.LongClicksHandledActivity
## 1334 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1335 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1336 org.androidannotations.test15.SSLConnection
## 1337 org.androidannotations.test15.SSLConnection
## 1338 org.androidannotations.test15.SSLConnection
## 1339 org.androidannotations.test15.SSLConnection
## 1340 org.androidannotations.test15.TextWatchedActivity
## 1341 org.androidannotations.test15.TextWatchedActivity
## 1342 org.androidannotations.test15.TextWatchedActivity
## 1343 org.androidannotations.test15.TextWatchedActivity
## 1344 org.androidannotations.test15.TouchesHandledActivity
## 1345 org.androidannotations.test15.TouchesHandledActivity
## 1346 org.androidannotations.test15.TouchesHandledActivity
## 1347 org.androidannotations.test15.TouchesHandledActivity
## 1348 org.androidannotations.test15.TransactionalActivity
## 1349 org.androidannotations.test15.TransactionalActivity
## 1350 org.androidannotations.test15.ViewsInjectedActivity
## 1351 org.androidannotations.test15.ViewsInjectedActivity
## 1352 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1353 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1354 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1355 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1356 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1357 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1358 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1359 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1360 org.androidannotations.test15.afterinject.AfterInjectBean
## 1361 org.androidannotations.test15.afterinject.AfterInjectBean
## 1362 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1363 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1364 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1365 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1366 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1367 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1368 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1369 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1370 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1371 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1372 org.androidannotations.test15.ebean.SomeBean
## 1373 org.androidannotations.test15.ebean.SomeBean
## 1374 org.androidannotations.test15.ebean.SomeBean
## 1375 org.androidannotations.test15.ebean.SomeBean
## 1376 org.androidannotations.test15.ebean.SomeSingleton
## 1377 org.androidannotations.test15.ebean.SomeSingleton
## 1378 org.androidannotations.test15.ebean.SomeSingleton
## 1379 org.androidannotations.test15.ebean.SomeSingleton
## 1380 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1381 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1382 org.androidannotations.test15.efragment.MyFragmentActivity
## 1383 org.androidannotations.test15.efragment.MyFragmentActivity
## 1384 org.androidannotations.test15.efragment.MyFragmentActivity
## 1385 org.androidannotations.test15.efragment.MyFragmentActivity
## 1386 org.androidannotations.test15.efragment.MyFragmentActivity
## 1387 org.androidannotations.test15.efragment.MyFragmentActivity
## 1388 org.androidannotations.test15.efragment.MyFragmentActivity
## 1389 org.androidannotations.test15.efragment.MyFragmentActivity
## 1390 org.androidannotations.test15.efragment.MyListFragment
## 1391 org.androidannotations.test15.efragment.MyListFragment
## 1392 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1393 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1394 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1395 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1396 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1397 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1398 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1399 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1400 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1401 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1402 org.androidannotations.test15.eview.CustomButton
## 1403 org.androidannotations.test15.eview.CustomButton
## 1404 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1405 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1406 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1407 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1408 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1409 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1410 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1411 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1412 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1413 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1414 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1415 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1416 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1417 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1418 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1419 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1420 org.androidannotations.test15.prefs.PrefsActivity
## 1421 org.androidannotations.test15.prefs.PrefsActivity
## 1422 org.androidannotations.test15.prefs.PrefsActivity
## 1423 org.androidannotations.test15.prefs.PrefsActivity
## 1424 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1425 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1426 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1427 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1428 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1429 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1430 org.androidannotations.test15.res.ResActivity
## 1431 org.androidannotations.test15.res.ResActivity
## 1432 org.androidannotations.test15.res.ResActivity
## 1433 org.androidannotations.test15.res.ResActivity
## 1434 org.androidannotations.test15.rest.MyService
## 1435 org.androidannotations.test15.rest.MyService
## 1436 org.androidannotations.test15.sherlock.MySherlockActivity
## 1437 org.androidannotations.test15.sherlock.MySherlockActivity
## 1438 org.androidannotations.test15.trace.TracedActivity
## 1439 org.androidannotations.test15.trace.TracedActivity
## 1440 org.androidannotations.test15.trace.TracedActivity
## 1441 org.androidannotations.test15.trace.TracedActivity
## 1442 org.androidannotations.helper.AndroidManifestFinder
## 1443 org.androidannotations.helper.AndroidManifestFinder
## 1444 org.androidannotations.helper.ValidatorParameterHelper
## 1445 org.androidannotations.helper.ValidatorParameterHelper
## 1446 org.androidannotations.helper.ValidatorParameterHelper
## 1447 org.androidannotations.helper.ValidatorParameterHelper
## 1448 org.androidannotations.helper.ValidatorParameterHelper
## 1449 org.androidannotations.helper.ValidatorParameterHelper
## 1450 org.androidannotations.helper.ValidatorParameterHelper
## 1451 org.androidannotations.helper.ValidatorParameterHelper
## 1452 org.androidannotations.helper.ValidatorParameterHelper
## 1453 org.androidannotations.helper.ValidatorParameterHelper
## 1454 org.androidannotations.helper.ValidatorParameterHelper
## 1455 org.androidannotations.helper.ValidatorParameterHelper
## 1456 org.androidannotations.logger.formatter.Formatter
## 1457 org.androidannotations.logger.formatter.Formatter
## 1458 org.androidannotations.logger.formatter.Formatter
## 1459 org.androidannotations.logger.formatter.Formatter
## 1460 org.androidannotations.logger.formatter.Formatter
## 1461 org.androidannotations.logger.formatter.Formatter
## 1462 org.androidannotations.logger.formatter.Formatter
## 1463 org.androidannotations.logger.formatter.Formatter
## 1464 org.androidannotations.logger.formatter.Formatter
## 1465 org.androidannotations.logger.formatter.Formatter
## 1466 org.androidannotations.logger.formatter.Formatter
## 1467 org.androidannotations.logger.formatter.Formatter
## 1468 org.androidannotations.logger.formatter.Formatter
## 1469 org.androidannotations.logger.formatter.Formatter
## 1470 org.androidannotations.logger.Logger
## 1471 org.androidannotations.logger.Logger
## 1472 org.androidannotations.logger.Logger
## 1473 org.androidannotations.logger.Logger
## 1474 org.androidannotations.logger.Logger
## 1475 org.androidannotations.logger.Logger
## 1476 org.androidannotations.logger.Logger
## 1477 org.androidannotations.logger.Logger
## 1478 org.androidannotations.logger.Logger
## 1479 org.androidannotations.logger.Logger
## 1480 org.androidannotations.logger.Logger
## 1481 org.androidannotations.logger.Logger
## 1482 org.androidannotations.logger.Logger
## 1483 org.androidannotations.logger.Logger
## 1484 org.androidannotations.test15.AbstractActivity
## 1485 org.androidannotations.test15.AbstractActivity
## 1486 org.androidannotations.test15.ApplicationInjectedActivity
## 1487 org.androidannotations.test15.ApplicationInjectedActivity
## 1488 org.androidannotations.test15.ApplicationInjectedActivity
## 1489 org.androidannotations.test15.ApplicationInjectedActivity
## 1490 org.androidannotations.test15.CheckedChangeHandledActivity
## 1491 org.androidannotations.test15.CheckedChangeHandledActivity
## 1492 org.androidannotations.test15.CheckedChangeHandledActivity
## 1493 org.androidannotations.test15.CheckedChangeHandledActivity
## 1494 org.androidannotations.test15.ClicksHandledActivity
## 1495 org.androidannotations.test15.ClicksHandledActivity
## 1496 org.androidannotations.test15.ClicksHandledActivity
## 1497 org.androidannotations.test15.ClicksHandledActivity
## 1498 org.androidannotations.test15.EmptyActivityWithLayout
## 1499 org.androidannotations.test15.EmptyActivityWithLayout
## 1500 org.androidannotations.test15.EmptyActivityWithLayout
## 1501 org.androidannotations.test15.EmptyActivityWithLayout
## 1502 org.androidannotations.test15.FocusChangeHandledActivity
## 1503 org.androidannotations.test15.FocusChangeHandledActivity
## 1504 org.androidannotations.test15.FocusChangeHandledActivity
## 1505 org.androidannotations.test15.FocusChangeHandledActivity
## 1506 org.androidannotations.test15.FromHtmlActivity
## 1507 org.androidannotations.test15.FromHtmlActivity
## 1508 org.androidannotations.test15.FromHtmlActivity
## 1509 org.androidannotations.test15.FromHtmlActivity
## 1510 org.androidannotations.test15.ItemClicksHandledActivity
## 1511 org.androidannotations.test15.ItemClicksHandledActivity
## 1512 org.androidannotations.test15.LongClicksHandledActivity
## 1513 org.androidannotations.test15.LongClicksHandledActivity
## 1514 org.androidannotations.test15.LongClicksHandledActivity
## 1515 org.androidannotations.test15.LongClicksHandledActivity
## 1516 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1517 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1518 org.androidannotations.test15.SSLConnection
## 1519 org.androidannotations.test15.SSLConnection
## 1520 org.androidannotations.test15.SSLConnection
## 1521 org.androidannotations.test15.SSLConnection
## 1522 org.androidannotations.test15.TextWatchedActivity
## 1523 org.androidannotations.test15.TextWatchedActivity
## 1524 org.androidannotations.test15.TextWatchedActivity
## 1525 org.androidannotations.test15.TextWatchedActivity
## 1526 org.androidannotations.test15.TouchesHandledActivity
## 1527 org.androidannotations.test15.TouchesHandledActivity
## 1528 org.androidannotations.test15.TouchesHandledActivity
## 1529 org.androidannotations.test15.TouchesHandledActivity
## 1530 org.androidannotations.test15.TransactionalActivity
## 1531 org.androidannotations.test15.TransactionalActivity
## 1532 org.androidannotations.test15.ViewsInjectedActivity
## 1533 org.androidannotations.test15.ViewsInjectedActivity
## 1534 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1535 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1536 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1537 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1538 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1539 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1540 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1541 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1542 org.androidannotations.test15.afterinject.AfterInjectBean
## 1543 org.androidannotations.test15.afterinject.AfterInjectBean
## 1544 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1545 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1546 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1547 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1548 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1549 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1550 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1551 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1552 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1553 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1554 org.androidannotations.test15.ebean.SomeBean
## 1555 org.androidannotations.test15.ebean.SomeBean
## 1556 org.androidannotations.test15.ebean.SomeBean
## 1557 org.androidannotations.test15.ebean.SomeBean
## 1558 org.androidannotations.test15.ebean.SomeSingleton
## 1559 org.androidannotations.test15.ebean.SomeSingleton
## 1560 org.androidannotations.test15.ebean.SomeSingleton
## 1561 org.androidannotations.test15.ebean.SomeSingleton
## 1562 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1563 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1564 org.androidannotations.test15.efragment.MyFragmentActivity
## 1565 org.androidannotations.test15.efragment.MyFragmentActivity
## 1566 org.androidannotations.test15.efragment.MyFragmentActivity
## 1567 org.androidannotations.test15.efragment.MyFragmentActivity
## 1568 org.androidannotations.test15.efragment.MyFragmentActivity
## 1569 org.androidannotations.test15.efragment.MyFragmentActivity
## 1570 org.androidannotations.test15.efragment.MyFragmentActivity
## 1571 org.androidannotations.test15.efragment.MyFragmentActivity
## 1572 org.androidannotations.test15.efragment.MyListFragment
## 1573 org.androidannotations.test15.efragment.MyListFragment
## 1574 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1575 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1576 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1577 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1578 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1579 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1580 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1581 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1582 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1583 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1584 org.androidannotations.test15.eview.CustomButton
## 1585 org.androidannotations.test15.eview.CustomButton
## 1586 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1587 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1588 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1589 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1590 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1591 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1592 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1593 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1594 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1595 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1596 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1597 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1598 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1599 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1600 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1601 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1602 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1603 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1604 org.androidannotations.test15.prefs.PrefsActivity
## 1605 org.androidannotations.test15.prefs.PrefsActivity
## 1606 org.androidannotations.test15.prefs.PrefsActivity
## 1607 org.androidannotations.test15.prefs.PrefsActivity
## 1608 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1609 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1610 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1611 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1612 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1613 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1614 org.androidannotations.test15.res.ResActivity
## 1615 org.androidannotations.test15.res.ResActivity
## 1616 org.androidannotations.test15.res.ResActivity
## 1617 org.androidannotations.test15.res.ResActivity
## 1618 org.androidannotations.test15.rest.MyService
## 1619 org.androidannotations.test15.rest.MyService
## 1620 org.androidannotations.test15.sherlock.MySherlockActivity
## 1621 org.androidannotations.test15.sherlock.MySherlockActivity
## 1622 org.androidannotations.test15.trace.TracedActivity
## 1623 org.androidannotations.test15.trace.TracedActivity
## 1624 org.androidannotations.test15.trace.TracedActivity
## 1625 org.androidannotations.test15.trace.TracedActivity
## 1626 org.androidannotations.helper.AndroidManifestFinder
## 1627 org.androidannotations.helper.AndroidManifestFinder
## 1628 org.androidannotations.helper.ValidatorParameterHelper
## 1629 org.androidannotations.helper.ValidatorParameterHelper
## 1630 org.androidannotations.helper.ValidatorParameterHelper
## 1631 org.androidannotations.helper.ValidatorParameterHelper
## 1632 org.androidannotations.helper.ValidatorParameterHelper
## 1633 org.androidannotations.helper.ValidatorParameterHelper
## 1634 org.androidannotations.helper.ValidatorParameterHelper
## 1635 org.androidannotations.helper.ValidatorParameterHelper
## 1636 org.androidannotations.helper.ValidatorParameterHelper
## 1637 org.androidannotations.helper.ValidatorParameterHelper
## 1638 org.androidannotations.helper.ValidatorParameterHelper
## 1639 org.androidannotations.helper.ValidatorParameterHelper
## 1640 org.androidannotations.logger.formatter.Formatter
## 1641 org.androidannotations.logger.formatter.Formatter
## 1642 org.androidannotations.logger.formatter.Formatter
## 1643 org.androidannotations.logger.formatter.Formatter
## 1644 org.androidannotations.logger.formatter.Formatter
## 1645 org.androidannotations.logger.formatter.Formatter
## 1646 org.androidannotations.logger.formatter.Formatter
## 1647 org.androidannotations.logger.formatter.Formatter
## 1648 org.androidannotations.logger.formatter.Formatter
## 1649 org.androidannotations.logger.formatter.Formatter
## 1650 org.androidannotations.logger.formatter.Formatter
## 1651 org.androidannotations.logger.formatter.Formatter
## 1652 org.androidannotations.logger.formatter.Formatter
## 1653 org.androidannotations.logger.formatter.Formatter
## 1654 org.androidannotations.logger.Logger
## 1655 org.androidannotations.logger.Logger
## 1656 org.androidannotations.logger.Logger
## 1657 org.androidannotations.logger.Logger
## 1658 org.androidannotations.logger.Logger
## 1659 org.androidannotations.logger.Logger
## 1660 org.androidannotations.logger.Logger
## 1661 org.androidannotations.logger.Logger
## 1662 org.androidannotations.logger.Logger
## 1663 org.androidannotations.logger.Logger
## 1664 org.androidannotations.logger.Logger
## 1665 org.androidannotations.logger.Logger
## 1666 org.androidannotations.logger.Logger
## 1667 org.androidannotations.logger.Logger
## 1668 org.androidannotations.test15.AbstractActivity
## 1669 org.androidannotations.test15.AbstractActivity
## 1670 org.androidannotations.test15.ApplicationInjectedActivity
## 1671 org.androidannotations.test15.ApplicationInjectedActivity
## 1672 org.androidannotations.test15.ApplicationInjectedActivity
## 1673 org.androidannotations.test15.ApplicationInjectedActivity
## 1674 org.androidannotations.test15.CheckedChangeHandledActivity
## 1675 org.androidannotations.test15.CheckedChangeHandledActivity
## 1676 org.androidannotations.test15.CheckedChangeHandledActivity
## 1677 org.androidannotations.test15.CheckedChangeHandledActivity
## 1678 org.androidannotations.test15.ClicksHandledActivity
## 1679 org.androidannotations.test15.ClicksHandledActivity
## 1680 org.androidannotations.test15.ClicksHandledActivity
## 1681 org.androidannotations.test15.ClicksHandledActivity
## 1682 org.androidannotations.test15.EmptyActivityWithLayout
## 1683 org.androidannotations.test15.EmptyActivityWithLayout
## 1684 org.androidannotations.test15.EmptyActivityWithLayout
## 1685 org.androidannotations.test15.EmptyActivityWithLayout
## 1686 org.androidannotations.test15.FocusChangeHandledActivity
## 1687 org.androidannotations.test15.FocusChangeHandledActivity
## 1688 org.androidannotations.test15.FocusChangeHandledActivity
## 1689 org.androidannotations.test15.FocusChangeHandledActivity
## 1690 org.androidannotations.test15.FromHtmlActivity
## 1691 org.androidannotations.test15.FromHtmlActivity
## 1692 org.androidannotations.test15.FromHtmlActivity
## 1693 org.androidannotations.test15.FromHtmlActivity
## 1694 org.androidannotations.test15.ItemClicksHandledActivity
## 1695 org.androidannotations.test15.ItemClicksHandledActivity
## 1696 org.androidannotations.test15.LongClicksHandledActivity
## 1697 org.androidannotations.test15.LongClicksHandledActivity
## 1698 org.androidannotations.test15.LongClicksHandledActivity
## 1699 org.androidannotations.test15.LongClicksHandledActivity
## 1700 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1701 org.androidannotations.test15.SeekBarChangeListenedActivity
## 1702 org.androidannotations.test15.SSLConnection
## 1703 org.androidannotations.test15.SSLConnection
## 1704 org.androidannotations.test15.SSLConnection
## 1705 org.androidannotations.test15.SSLConnection
## 1706 org.androidannotations.test15.TextWatchedActivity
## 1707 org.androidannotations.test15.TextWatchedActivity
## 1708 org.androidannotations.test15.TextWatchedActivity
## 1709 org.androidannotations.test15.TextWatchedActivity
## 1710 org.androidannotations.test15.TouchesHandledActivity
## 1711 org.androidannotations.test15.TouchesHandledActivity
## 1712 org.androidannotations.test15.TouchesHandledActivity
## 1713 org.androidannotations.test15.TouchesHandledActivity
## 1714 org.androidannotations.test15.TransactionalActivity
## 1715 org.androidannotations.test15.TransactionalActivity
## 1716 org.androidannotations.test15.ViewsInjectedActivity
## 1717 org.androidannotations.test15.ViewsInjectedActivity
## 1718 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1719 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1720 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1721 org.androidannotations.test15.afterextras.AfterExtrasActivity
## 1722 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1723 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1724 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1725 org.androidannotations.test15.afterinject.AfterInjectActivity
## 1726 org.androidannotations.test15.afterinject.AfterInjectBean
## 1727 org.androidannotations.test15.afterinject.AfterInjectBean
## 1728 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1729 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1730 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1731 org.androidannotations.test15.afterviews.AfterViewsActivity
## 1732 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1733 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1734 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1735 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1736 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1737 org.androidannotations.test15.ebean.BeanInjectedActivity
## 1738 org.androidannotations.test15.ebean.SomeBean
## 1739 org.androidannotations.test15.ebean.SomeBean
## 1740 org.androidannotations.test15.ebean.SomeBean
## 1741 org.androidannotations.test15.ebean.SomeBean
## 1742 org.androidannotations.test15.ebean.SomeSingleton
## 1743 org.androidannotations.test15.ebean.SomeSingleton
## 1744 org.androidannotations.test15.ebean.SomeSingleton
## 1745 org.androidannotations.test15.ebean.SomeSingleton
## 1746 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1747 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragment
## 1748 org.androidannotations.test15.efragment.MyFragmentActivity
## 1749 org.androidannotations.test15.efragment.MyFragmentActivity
## 1750 org.androidannotations.test15.efragment.MyFragmentActivity
## 1751 org.androidannotations.test15.efragment.MyFragmentActivity
## 1752 org.androidannotations.test15.efragment.MyFragmentActivity
## 1753 org.androidannotations.test15.efragment.MyFragmentActivity
## 1754 org.androidannotations.test15.efragment.MyFragmentActivity
## 1755 org.androidannotations.test15.efragment.MyFragmentActivity
## 1756 org.androidannotations.test15.efragment.MyListFragment
## 1757 org.androidannotations.test15.efragment.MyListFragment
## 1758 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1759 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1760 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1761 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1762 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1763 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1764 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1765 org.androidannotations.test15.efragment.MySupportFragmentActivity
## 1766 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1767 org.androidannotations.test15.ereceiver.ReceiverWithActions
## 1768 org.androidannotations.test15.eview.CustomButton
## 1769 org.androidannotations.test15.eview.CustomButton
## 1770 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1771 org.androidannotations.test15.instancestate.SaveInstanceStateActivity
## 1772 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1773 org.androidannotations.test15.nonconfiguration.NonConfigurationActivity
## 1774 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1775 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1776 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1777 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1778 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1779 org.androidannotations.test15.ormlite.OrmLiteActivity
## 1780 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1781 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1782 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1783 org.androidannotations.test15.preference.PreferenceEventsHandledActivity
## 1784 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1785 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1786 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1787 org.androidannotations.test15.preference.PreferenceScreenActivity
## 1788 org.androidannotations.test15.prefs.PrefsActivity
## 1789 org.androidannotations.test15.prefs.PrefsActivity
## 1790 org.androidannotations.test15.prefs.PrefsActivity
## 1791 org.androidannotations.test15.prefs.PrefsActivity
## 1792 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1793 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1794 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1795 org.androidannotations.test15.receiver.ActivityWithReceiver
## 1796 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1797 org.androidannotations.test15.receiver.FragmentWithReceiver
## 1798 org.androidannotations.test15.res.ResActivity
## 1799 org.androidannotations.test15.res.ResActivity
## 1800 org.androidannotations.test15.res.ResActivity
## 1801 org.androidannotations.test15.res.ResActivity
## 1802 org.androidannotations.test15.rest.MyService
## 1803 org.androidannotations.test15.rest.MyService
## 1804 org.androidannotations.test15.sherlock.MySherlockActivity
## 1805 org.androidannotations.test15.sherlock.MySherlockActivity
## 1806 org.androidannotations.test15.trace.TracedActivity
## 1807 org.androidannotations.test15.trace.TracedActivity
## 1808 org.androidannotations.test15.trace.TracedActivity
## 1809 org.androidannotations.test15.trace.TracedActivity
## 1810 org.androidannotations.helper.ValidatorParameterHelper
## 1811 org.androidannotations.helper.ValidatorParameterHelper
## 1812 org.androidannotations.helper.ValidatorParameterHelper
## 1813 org.androidannotations.helper.ValidatorParameterHelper
## 1814 org.androidannotations.helper.ValidatorParameterHelper
## 1815 org.androidannotations.helper.ValidatorParameterHelper
## 1816 org.androidannotations.helper.ValidatorParameterHelper
## 1817 org.androidannotations.helper.ValidatorParameterHelper
## 1818 org.androidannotations.helper.ValidatorParameterHelper
## 1819 org.androidannotations.helper.ValidatorParameterHelper
## 1820 org.androidannotations.helper.ValidatorParameterHelper
## 1821 org.androidannotations.helper.ValidatorParameterHelper
## 1822 org.androidannotations.internal.helper.AndroidManifestFinder
## 1823 org.androidannotations.internal.helper.AndroidManifestFinder
## 1824 org.androidannotations.internal.helper.AndroidManifestFinder
## 1825 org.androidannotations.internal.helper.AndroidManifestFinder
## 1826 org.androidannotations.internal.helper.AndroidManifestFinder
## 1827 org.androidannotations.internal.helper.AndroidManifestFinder
## 1828 org.androidannotations.internal.helper.AndroidManifestFinder
## 1829 org.androidannotations.internal.helper.AndroidManifestFinder
## 1830 org.androidannotations.internal.helper.AndroidManifestFinder
## 1831 org.androidannotations.internal.helper.AndroidManifestFinder
## 1832 org.androidannotations.internal.helper.AndroidManifestFinder
## 1833 org.androidannotations.internal.helper.AndroidManifestFinder
## 1834 org.androidannotations.internal.helper.AndroidManifestFinder
## 1835 org.androidannotations.internal.helper.AndroidManifestFinder
## 1836 org.androidannotations.internal.helper.AndroidManifestFinder
## 1837 org.androidannotations.internal.helper.AndroidManifestFinder
## 1838 org.androidannotations.internal.helper.AndroidManifestFinder
## 1839 org.androidannotations.internal.helper.AndroidManifestFinder
## 1840 org.androidannotations.internal.helper.AndroidManifestFinder
## 1841 org.androidannotations.internal.helper.AndroidManifestFinder
## 1842 org.androidannotations.internal.helper.AndroidManifestFinder
## 1843 org.androidannotations.internal.helper.AndroidManifestFinder
## 1844 org.androidannotations.internal.helper.AndroidManifestFinder
## 1845 org.androidannotations.internal.helper.AndroidManifestFinder
## 1846 org.androidannotations.logger.formatter.Formatter
## 1847 org.androidannotations.logger.formatter.Formatter
## 1848 org.androidannotations.logger.formatter.Formatter
## 1849 org.androidannotations.logger.formatter.Formatter
## 1850 org.androidannotations.logger.formatter.Formatter
## 1851 org.androidannotations.logger.formatter.Formatter
## 1852 org.androidannotations.logger.formatter.Formatter
## 1853 org.androidannotations.logger.formatter.Formatter
## 1854 org.androidannotations.logger.formatter.Formatter
## 1855 org.androidannotations.logger.formatter.Formatter
## 1856 org.androidannotations.logger.formatter.Formatter
## 1857 org.androidannotations.logger.formatter.Formatter
## 1858 org.androidannotations.logger.formatter.Formatter
## 1859 org.androidannotations.logger.formatter.Formatter
## 1860 org.androidannotations.logger.Logger
## 1861 org.androidannotations.logger.Logger
## 1862 org.androidannotations.logger.Logger
## 1863 org.androidannotations.logger.Logger
## 1864 org.androidannotations.logger.Logger
## 1865 org.androidannotations.logger.Logger
## 1866 org.androidannotations.logger.Logger
## 1867 org.androidannotations.logger.Logger
## 1868 org.androidannotations.logger.Logger
## 1869 org.androidannotations.logger.Logger
## 1870 org.androidannotations.logger.Logger
## 1871 org.androidannotations.logger.Logger
## 1872 org.androidannotations.logger.Logger
## 1873 org.androidannotations.logger.Logger
## 1874 org.androidannotations.test.AbstractActivity
## 1875 org.androidannotations.test.AbstractActivity
## 1876 org.androidannotations.test.AbstractActivity
## 1877 org.androidannotations.test.AbstractActivity
## 1878 org.androidannotations.test.AbstractActivity
## 1879 org.androidannotations.test.AbstractActivity
## 1880 org.androidannotations.test.AbstractActivity
## 1881 org.androidannotations.test.AbstractActivity
## 1882 org.androidannotations.test.AbstractActivity
## 1883 org.androidannotations.test.AbstractActivity
## 1884 org.androidannotations.test.AbstractActivity
## 1885 org.androidannotations.test.AbstractActivity
## 1886 org.androidannotations.test.CheckedChangeHandledActivity
## 1887 org.androidannotations.test.CheckedChangeHandledActivity
## 1888 org.androidannotations.test.CheckedChangeHandledActivity
## 1889 org.androidannotations.test.CheckedChangeHandledActivity
## 1890 org.androidannotations.test.CheckedChangeHandledActivity
## 1891 org.androidannotations.test.CheckedChangeHandledActivity
## 1892 org.androidannotations.test.CheckedChangeHandledActivity
## 1893 org.androidannotations.test.CheckedChangeHandledActivity
## 1894 org.androidannotations.test.CheckedChangeHandledActivity
## 1895 org.androidannotations.test.CheckedChangeHandledActivity
## 1896 org.androidannotations.test.CheckedChangeHandledActivity
## 1897 org.androidannotations.test.CheckedChangeHandledActivity
## 1898 org.androidannotations.test.CheckedChangeHandledActivity
## 1899 org.androidannotations.test.CheckedChangeHandledActivity
## 1900 org.androidannotations.test.CheckedChangeHandledActivity
## 1901 org.androidannotations.test.CheckedChangeHandledActivity
## 1902 org.androidannotations.test.CheckedChangeHandledActivity
## 1903 org.androidannotations.test.CheckedChangeHandledActivity
## 1904 org.androidannotations.test.CheckedChangeHandledActivity
## 1905 org.androidannotations.test.CheckedChangeHandledActivity
## 1906 org.androidannotations.test.CheckedChangeHandledActivity
## 1907 org.androidannotations.test.CheckedChangeHandledActivity
## 1908 org.androidannotations.test.CheckedChangeHandledActivity
## 1909 org.androidannotations.test.CheckedChangeHandledActivity
## 1910 org.androidannotations.test.ClicksHandledActivity
## 1911 org.androidannotations.test.ClicksHandledActivity
## 1912 org.androidannotations.test.ClicksHandledActivity
## 1913 org.androidannotations.test.ClicksHandledActivity
## 1914 org.androidannotations.test.ClicksHandledActivity
## 1915 org.androidannotations.test.ClicksHandledActivity
## 1916 org.androidannotations.test.ClicksHandledActivity
## 1917 org.androidannotations.test.ClicksHandledActivity
## 1918 org.androidannotations.test.ClicksHandledActivity
## 1919 org.androidannotations.test.ClicksHandledActivity
## 1920 org.androidannotations.test.ClicksHandledActivity
## 1921 org.androidannotations.test.ClicksHandledActivity
## 1922 org.androidannotations.test.ClicksHandledActivity
## 1923 org.androidannotations.test.ClicksHandledActivity
## 1924 org.androidannotations.test.ClicksHandledActivity
## 1925 org.androidannotations.test.ClicksHandledActivity
## 1926 org.androidannotations.test.ClicksHandledActivity
## 1927 org.androidannotations.test.ClicksHandledActivity
## 1928 org.androidannotations.test.ClicksHandledActivity
## 1929 org.androidannotations.test.ClicksHandledActivity
## 1930 org.androidannotations.test.ClicksHandledActivity
## 1931 org.androidannotations.test.ClicksHandledActivity
## 1932 org.androidannotations.test.ClicksHandledActivity
## 1933 org.androidannotations.test.ClicksHandledActivity
## 1934 org.androidannotations.test.EmptyActivityWithLayout
## 1935 org.androidannotations.test.EmptyActivityWithLayout
## 1936 org.androidannotations.test.EmptyActivityWithLayout
## 1937 org.androidannotations.test.EmptyActivityWithLayout
## 1938 org.androidannotations.test.EmptyActivityWithLayout
## 1939 org.androidannotations.test.EmptyActivityWithLayout
## 1940 org.androidannotations.test.EmptyActivityWithLayout
## 1941 org.androidannotations.test.EmptyActivityWithLayout
## 1942 org.androidannotations.test.EmptyActivityWithLayout
## 1943 org.androidannotations.test.EmptyActivityWithLayout
## 1944 org.androidannotations.test.EmptyActivityWithLayout
## 1945 org.androidannotations.test.EmptyActivityWithLayout
## 1946 org.androidannotations.test.EmptyActivityWithLayout
## 1947 org.androidannotations.test.EmptyActivityWithLayout
## 1948 org.androidannotations.test.EmptyActivityWithLayout
## 1949 org.androidannotations.test.EmptyActivityWithLayout
## 1950 org.androidannotations.test.EmptyActivityWithLayout
## 1951 org.androidannotations.test.EmptyActivityWithLayout
## 1952 org.androidannotations.test.EmptyActivityWithLayout
## 1953 org.androidannotations.test.EmptyActivityWithLayout
## 1954 org.androidannotations.test.EmptyActivityWithLayout
## 1955 org.androidannotations.test.EmptyActivityWithLayout
## 1956 org.androidannotations.test.EmptyActivityWithLayout
## 1957 org.androidannotations.test.EmptyActivityWithLayout
## 1958 org.androidannotations.test.FocusChangeHandledActivity
## 1959 org.androidannotations.test.FocusChangeHandledActivity
## 1960 org.androidannotations.test.FocusChangeHandledActivity
## 1961 org.androidannotations.test.FocusChangeHandledActivity
## 1962 org.androidannotations.test.FocusChangeHandledActivity
## 1963 org.androidannotations.test.FocusChangeHandledActivity
## 1964 org.androidannotations.test.FocusChangeHandledActivity
## 1965 org.androidannotations.test.FocusChangeHandledActivity
## 1966 org.androidannotations.test.FocusChangeHandledActivity
## 1967 org.androidannotations.test.FocusChangeHandledActivity
## 1968 org.androidannotations.test.FocusChangeHandledActivity
## 1969 org.androidannotations.test.FocusChangeHandledActivity
## 1970 org.androidannotations.test.FocusChangeHandledActivity
## 1971 org.androidannotations.test.FocusChangeHandledActivity
## 1972 org.androidannotations.test.FocusChangeHandledActivity
## 1973 org.androidannotations.test.FocusChangeHandledActivity
## 1974 org.androidannotations.test.FocusChangeHandledActivity
## 1975 org.androidannotations.test.FocusChangeHandledActivity
## 1976 org.androidannotations.test.FocusChangeHandledActivity
## 1977 org.androidannotations.test.FocusChangeHandledActivity
## 1978 org.androidannotations.test.FocusChangeHandledActivity
## 1979 org.androidannotations.test.FocusChangeHandledActivity
## 1980 org.androidannotations.test.FocusChangeHandledActivity
## 1981 org.androidannotations.test.FocusChangeHandledActivity
## 1982 org.androidannotations.test.FromHtmlActivity
## 1983 org.androidannotations.test.FromHtmlActivity
## 1984 org.androidannotations.test.FromHtmlActivity
## 1985 org.androidannotations.test.FromHtmlActivity
## 1986 org.androidannotations.test.FromHtmlActivity
## 1987 org.androidannotations.test.FromHtmlActivity
## 1988 org.androidannotations.test.FromHtmlActivity
## 1989 org.androidannotations.test.FromHtmlActivity
## 1990 org.androidannotations.test.FromHtmlActivity
## 1991 org.androidannotations.test.FromHtmlActivity
## 1992 org.androidannotations.test.FromHtmlActivity
## 1993 org.androidannotations.test.FromHtmlActivity
## 1994 org.androidannotations.test.FromHtmlActivity
## 1995 org.androidannotations.test.FromHtmlActivity
## 1996 org.androidannotations.test.FromHtmlActivity
## 1997 org.androidannotations.test.FromHtmlActivity
## 1998 org.androidannotations.test.FromHtmlActivity
## 1999 org.androidannotations.test.FromHtmlActivity
## 2000 org.androidannotations.test.FromHtmlActivity
## 2001 org.androidannotations.test.FromHtmlActivity
## 2002 org.androidannotations.test.FromHtmlActivity
## 2003 org.androidannotations.test.FromHtmlActivity
## 2004 org.androidannotations.test.FromHtmlActivity
## 2005 org.androidannotations.test.FromHtmlActivity
## 2006 org.androidannotations.test.ItemClicksHandledActivity
## 2007 org.androidannotations.test.ItemClicksHandledActivity
## 2008 org.androidannotations.test.ItemClicksHandledActivity
## 2009 org.androidannotations.test.ItemClicksHandledActivity
## 2010 org.androidannotations.test.ItemClicksHandledActivity
## 2011 org.androidannotations.test.ItemClicksHandledActivity
## 2012 org.androidannotations.test.ItemClicksHandledActivity
## 2013 org.androidannotations.test.ItemClicksHandledActivity
## 2014 org.androidannotations.test.ItemClicksHandledActivity
## 2015 org.androidannotations.test.ItemClicksHandledActivity
## 2016 org.androidannotations.test.ItemClicksHandledActivity
## 2017 org.androidannotations.test.ItemClicksHandledActivity
## 2018 org.androidannotations.test.LongClicksHandledActivity
## 2019 org.androidannotations.test.LongClicksHandledActivity
## 2020 org.androidannotations.test.LongClicksHandledActivity
## 2021 org.androidannotations.test.LongClicksHandledActivity
## 2022 org.androidannotations.test.LongClicksHandledActivity
## 2023 org.androidannotations.test.LongClicksHandledActivity
## 2024 org.androidannotations.test.LongClicksHandledActivity
## 2025 org.androidannotations.test.LongClicksHandledActivity
## 2026 org.androidannotations.test.LongClicksHandledActivity
## 2027 org.androidannotations.test.LongClicksHandledActivity
## 2028 org.androidannotations.test.LongClicksHandledActivity
## 2029 org.androidannotations.test.LongClicksHandledActivity
## 2030 org.androidannotations.test.LongClicksHandledActivity
## 2031 org.androidannotations.test.LongClicksHandledActivity
## 2032 org.androidannotations.test.LongClicksHandledActivity
## 2033 org.androidannotations.test.LongClicksHandledActivity
## 2034 org.androidannotations.test.LongClicksHandledActivity
## 2035 org.androidannotations.test.LongClicksHandledActivity
## 2036 org.androidannotations.test.LongClicksHandledActivity
## 2037 org.androidannotations.test.LongClicksHandledActivity
## 2038 org.androidannotations.test.LongClicksHandledActivity
## 2039 org.androidannotations.test.LongClicksHandledActivity
## 2040 org.androidannotations.test.LongClicksHandledActivity
## 2041 org.androidannotations.test.LongClicksHandledActivity
## 2042 org.androidannotations.test.PageChangeListenerActivity
## 2043 org.androidannotations.test.PageChangeListenerActivity
## 2044 org.androidannotations.test.PageChangeListenerActivity
## 2045 org.androidannotations.test.PageChangeListenerActivity
## 2046 org.androidannotations.test.PageChangeListenerActivity
## 2047 org.androidannotations.test.PageChangeListenerActivity
## 2048 org.androidannotations.test.PageChangeListenerActivity
## 2049 org.androidannotations.test.PageChangeListenerActivity
## 2050 org.androidannotations.test.PageChangeListenerActivity
## 2051 org.androidannotations.test.PageChangeListenerActivity
## 2052 org.androidannotations.test.PageChangeListenerActivity
## 2053 org.androidannotations.test.PageChangeListenerActivity
## 2054 org.androidannotations.test.PageChangeListenerActivity
## 2055 org.androidannotations.test.PageChangeListenerActivity
## 2056 org.androidannotations.test.PageChangeListenerActivity
## 2057 org.androidannotations.test.PageChangeListenerActivity
## 2058 org.androidannotations.test.PageChangeListenerActivity
## 2059 org.androidannotations.test.PageChangeListenerActivity
## 2060 org.androidannotations.test.PageChangeListenerActivity
## 2061 org.androidannotations.test.PageChangeListenerActivity
## 2062 org.androidannotations.test.PageChangeListenerActivity
## 2063 org.androidannotations.test.PageChangeListenerActivity
## 2064 org.androidannotations.test.PageChangeListenerActivity
## 2065 org.androidannotations.test.PageChangeListenerActivity
## 2066 org.androidannotations.test.SeekBarChangeListenedActivity
## 2067 org.androidannotations.test.SeekBarChangeListenedActivity
## 2068 org.androidannotations.test.SeekBarChangeListenedActivity
## 2069 org.androidannotations.test.SeekBarChangeListenedActivity
## 2070 org.androidannotations.test.SeekBarChangeListenedActivity
## 2071 org.androidannotations.test.SeekBarChangeListenedActivity
## 2072 org.androidannotations.test.SeekBarChangeListenedActivity
## 2073 org.androidannotations.test.SeekBarChangeListenedActivity
## 2074 org.androidannotations.test.SeekBarChangeListenedActivity
## 2075 org.androidannotations.test.SeekBarChangeListenedActivity
## 2076 org.androidannotations.test.SeekBarChangeListenedActivity
## 2077 org.androidannotations.test.SeekBarChangeListenedActivity
## 2078 org.androidannotations.test.SSLConnection
## 2079 org.androidannotations.test.SSLConnection
## 2080 org.androidannotations.test.SSLConnection
## 2081 org.androidannotations.test.SSLConnection
## 2082 org.androidannotations.test.SSLConnection
## 2083 org.androidannotations.test.SSLConnection
## 2084 org.androidannotations.test.SSLConnection
## 2085 org.androidannotations.test.SSLConnection
## 2086 org.androidannotations.test.SSLConnection
## 2087 org.androidannotations.test.SSLConnection
## 2088 org.androidannotations.test.SSLConnection
## 2089 org.androidannotations.test.SSLConnection
## 2090 org.androidannotations.test.TextWatchedActivity
## 2091 org.androidannotations.test.TextWatchedActivity
## 2092 org.androidannotations.test.TextWatchedActivity
## 2093 org.androidannotations.test.TextWatchedActivity
## 2094 org.androidannotations.test.TextWatchedActivity
## 2095 org.androidannotations.test.TextWatchedActivity
## 2096 org.androidannotations.test.TextWatchedActivity
## 2097 org.androidannotations.test.TextWatchedActivity
## 2098 org.androidannotations.test.TextWatchedActivity
## 2099 org.androidannotations.test.TextWatchedActivity
## 2100 org.androidannotations.test.TextWatchedActivity
## 2101 org.androidannotations.test.TextWatchedActivity
## 2102 org.androidannotations.test.TextWatchedActivity
## 2103 org.androidannotations.test.TextWatchedActivity
## 2104 org.androidannotations.test.TextWatchedActivity
## 2105 org.androidannotations.test.TextWatchedActivity
## 2106 org.androidannotations.test.TextWatchedActivity
## 2107 org.androidannotations.test.TextWatchedActivity
## 2108 org.androidannotations.test.TextWatchedActivity
## 2109 org.androidannotations.test.TextWatchedActivity
## 2110 org.androidannotations.test.TextWatchedActivity
## 2111 org.androidannotations.test.TextWatchedActivity
## 2112 org.androidannotations.test.TextWatchedActivity
## 2113 org.androidannotations.test.TextWatchedActivity
## 2114 org.androidannotations.test.ThreadActivity
## 2115 org.androidannotations.test.ThreadActivity
## 2116 org.androidannotations.test.ThreadActivity
## 2117 org.androidannotations.test.ThreadActivity
## 2118 org.androidannotations.test.ThreadActivity
## 2119 org.androidannotations.test.ThreadActivity
## 2120 org.androidannotations.test.ThreadActivity
## 2121 org.androidannotations.test.ThreadActivity
## 2122 org.androidannotations.test.ThreadActivity
## 2123 org.androidannotations.test.ThreadActivity
## 2124 org.androidannotations.test.ThreadActivity
## 2125 org.androidannotations.test.ThreadActivity
## 2126 org.androidannotations.test.TouchesHandledActivity
## 2127 org.androidannotations.test.TouchesHandledActivity
## 2128 org.androidannotations.test.TouchesHandledActivity
## 2129 org.androidannotations.test.TouchesHandledActivity
## 2130 org.androidannotations.test.TouchesHandledActivity
## 2131 org.androidannotations.test.TouchesHandledActivity
## 2132 org.androidannotations.test.TouchesHandledActivity
## 2133 org.androidannotations.test.TouchesHandledActivity
## 2134 org.androidannotations.test.TouchesHandledActivity
## 2135 org.androidannotations.test.TouchesHandledActivity
## 2136 org.androidannotations.test.TouchesHandledActivity
## 2137 org.androidannotations.test.TouchesHandledActivity
## 2138 org.androidannotations.test.TouchesHandledActivity
## 2139 org.androidannotations.test.TouchesHandledActivity
## 2140 org.androidannotations.test.TouchesHandledActivity
## 2141 org.androidannotations.test.TouchesHandledActivity
## 2142 org.androidannotations.test.TouchesHandledActivity
## 2143 org.androidannotations.test.TouchesHandledActivity
## 2144 org.androidannotations.test.TouchesHandledActivity
## 2145 org.androidannotations.test.TouchesHandledActivity
## 2146 org.androidannotations.test.TouchesHandledActivity
## 2147 org.androidannotations.test.TouchesHandledActivity
## 2148 org.androidannotations.test.TouchesHandledActivity
## 2149 org.androidannotations.test.TouchesHandledActivity
## 2150 org.androidannotations.test.TransactionalActivity
## 2151 org.androidannotations.test.TransactionalActivity
## 2152 org.androidannotations.test.TransactionalActivity
## 2153 org.androidannotations.test.TransactionalActivity
## 2154 org.androidannotations.test.TransactionalActivity
## 2155 org.androidannotations.test.TransactionalActivity
## 2156 org.androidannotations.test.TransactionalActivity
## 2157 org.androidannotations.test.TransactionalActivity
## 2158 org.androidannotations.test.TransactionalActivity
## 2159 org.androidannotations.test.TransactionalActivity
## 2160 org.androidannotations.test.TransactionalActivity
## 2161 org.androidannotations.test.TransactionalActivity
## 2162 org.androidannotations.test.ViewsInjectedActivity
## 2163 org.androidannotations.test.ViewsInjectedActivity
## 2164 org.androidannotations.test.ViewsInjectedActivity
## 2165 org.androidannotations.test.ViewsInjectedActivity
## 2166 org.androidannotations.test.ViewsInjectedActivity
## 2167 org.androidannotations.test.ViewsInjectedActivity
## 2168 org.androidannotations.test.ViewsInjectedActivity
## 2169 org.androidannotations.test.ViewsInjectedActivity
## 2170 org.androidannotations.test.ViewsInjectedActivity
## 2171 org.androidannotations.test.ViewsInjectedActivity
## 2172 org.androidannotations.test.ViewsInjectedActivity
## 2173 org.androidannotations.test.ViewsInjectedActivity
## 2174 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2175 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2176 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2177 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2178 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2179 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2180 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2181 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2182 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2183 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2184 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2185 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2186 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2187 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2188 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2189 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2190 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2191 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2192 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2193 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2194 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2195 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2196 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2197 org.androidannotations.test.afterextras.AfterExtrasActivity
## 2198 org.androidannotations.test.afterinject.AfterInjectActivity
## 2199 org.androidannotations.test.afterinject.AfterInjectActivity
## 2200 org.androidannotations.test.afterinject.AfterInjectActivity
## 2201 org.androidannotations.test.afterinject.AfterInjectActivity
## 2202 org.androidannotations.test.afterinject.AfterInjectActivity
## 2203 org.androidannotations.test.afterinject.AfterInjectActivity
## 2204 org.androidannotations.test.afterinject.AfterInjectActivity
## 2205 org.androidannotations.test.afterinject.AfterInjectActivity
## 2206 org.androidannotations.test.afterinject.AfterInjectActivity
## 2207 org.androidannotations.test.afterinject.AfterInjectActivity
## 2208 org.androidannotations.test.afterinject.AfterInjectActivity
## 2209 org.androidannotations.test.afterinject.AfterInjectActivity
## 2210 org.androidannotations.test.afterinject.AfterInjectActivity
## 2211 org.androidannotations.test.afterinject.AfterInjectActivity
## 2212 org.androidannotations.test.afterinject.AfterInjectActivity
## 2213 org.androidannotations.test.afterinject.AfterInjectActivity
## 2214 org.androidannotations.test.afterinject.AfterInjectActivity
## 2215 org.androidannotations.test.afterinject.AfterInjectActivity
## 2216 org.androidannotations.test.afterinject.AfterInjectActivity
## 2217 org.androidannotations.test.afterinject.AfterInjectActivity
## 2218 org.androidannotations.test.afterinject.AfterInjectActivity
## 2219 org.androidannotations.test.afterinject.AfterInjectActivity
## 2220 org.androidannotations.test.afterinject.AfterInjectActivity
## 2221 org.androidannotations.test.afterinject.AfterInjectActivity
## 2222 org.androidannotations.test.afterinject.AfterInjectBean
## 2223 org.androidannotations.test.afterinject.AfterInjectBean
## 2224 org.androidannotations.test.afterinject.AfterInjectBean
## 2225 org.androidannotations.test.afterinject.AfterInjectBean
## 2226 org.androidannotations.test.afterinject.AfterInjectBean
## 2227 org.androidannotations.test.afterinject.AfterInjectBean
## 2228 org.androidannotations.test.afterinject.AfterInjectBean
## 2229 org.androidannotations.test.afterinject.AfterInjectBean
## 2230 org.androidannotations.test.afterinject.AfterInjectBean
## 2231 org.androidannotations.test.afterinject.AfterInjectBean
## 2232 org.androidannotations.test.afterinject.AfterInjectBean
## 2233 org.androidannotations.test.afterinject.AfterInjectBean
## 2234 org.androidannotations.test.afterviews.AfterViewsActivity
## 2235 org.androidannotations.test.afterviews.AfterViewsActivity
## 2236 org.androidannotations.test.afterviews.AfterViewsActivity
## 2237 org.androidannotations.test.afterviews.AfterViewsActivity
## 2238 org.androidannotations.test.afterviews.AfterViewsActivity
## 2239 org.androidannotations.test.afterviews.AfterViewsActivity
## 2240 org.androidannotations.test.afterviews.AfterViewsActivity
## 2241 org.androidannotations.test.afterviews.AfterViewsActivity
## 2242 org.androidannotations.test.afterviews.AfterViewsActivity
## 2243 org.androidannotations.test.afterviews.AfterViewsActivity
## 2244 org.androidannotations.test.afterviews.AfterViewsActivity
## 2245 org.androidannotations.test.afterviews.AfterViewsActivity
## 2246 org.androidannotations.test.afterviews.AfterViewsActivity
## 2247 org.androidannotations.test.afterviews.AfterViewsActivity
## 2248 org.androidannotations.test.afterviews.AfterViewsActivity
## 2249 org.androidannotations.test.afterviews.AfterViewsActivity
## 2250 org.androidannotations.test.afterviews.AfterViewsActivity
## 2251 org.androidannotations.test.afterviews.AfterViewsActivity
## 2252 org.androidannotations.test.afterviews.AfterViewsActivity
## 2253 org.androidannotations.test.afterviews.AfterViewsActivity
## 2254 org.androidannotations.test.afterviews.AfterViewsActivity
## 2255 org.androidannotations.test.afterviews.AfterViewsActivity
## 2256 org.androidannotations.test.afterviews.AfterViewsActivity
## 2257 org.androidannotations.test.afterviews.AfterViewsActivity
## 2258 org.androidannotations.test.ebean.BeanInjectedActivity
## 2259 org.androidannotations.test.ebean.BeanInjectedActivity
## 2260 org.androidannotations.test.ebean.BeanInjectedActivity
## 2261 org.androidannotations.test.ebean.BeanInjectedActivity
## 2262 org.androidannotations.test.ebean.BeanInjectedActivity
## 2263 org.androidannotations.test.ebean.BeanInjectedActivity
## 2264 org.androidannotations.test.ebean.BeanInjectedActivity
## 2265 org.androidannotations.test.ebean.BeanInjectedActivity
## 2266 org.androidannotations.test.ebean.BeanInjectedActivity
## 2267 org.androidannotations.test.ebean.BeanInjectedActivity
## 2268 org.androidannotations.test.ebean.BeanInjectedActivity
## 2269 org.androidannotations.test.ebean.BeanInjectedActivity
## 2270 org.androidannotations.test.ebean.BeanInjectedActivity
## 2271 org.androidannotations.test.ebean.BeanInjectedActivity
## 2272 org.androidannotations.test.ebean.BeanInjectedActivity
## 2273 org.androidannotations.test.ebean.BeanInjectedActivity
## 2274 org.androidannotations.test.ebean.BeanInjectedActivity
## 2275 org.androidannotations.test.ebean.BeanInjectedActivity
## 2276 org.androidannotations.test.ebean.BeanInjectedActivity
## 2277 org.androidannotations.test.ebean.BeanInjectedActivity
## 2278 org.androidannotations.test.ebean.BeanInjectedActivity
## 2279 org.androidannotations.test.ebean.BeanInjectedActivity
## 2280 org.androidannotations.test.ebean.BeanInjectedActivity
## 2281 org.androidannotations.test.ebean.BeanInjectedActivity
## 2282 org.androidannotations.test.ebean.BeanInjectedActivity
## 2283 org.androidannotations.test.ebean.BeanInjectedActivity
## 2284 org.androidannotations.test.ebean.BeanInjectedActivity
## 2285 org.androidannotations.test.ebean.BeanInjectedActivity
## 2286 org.androidannotations.test.ebean.BeanInjectedActivity
## 2287 org.androidannotations.test.ebean.BeanInjectedActivity
## 2288 org.androidannotations.test.ebean.BeanInjectedActivity
## 2289 org.androidannotations.test.ebean.BeanInjectedActivity
## 2290 org.androidannotations.test.ebean.BeanInjectedActivity
## 2291 org.androidannotations.test.ebean.BeanInjectedActivity
## 2292 org.androidannotations.test.ebean.BeanInjectedActivity
## 2293 org.androidannotations.test.ebean.BeanInjectedActivity
## 2294 org.androidannotations.test.ebean.SomeBean
## 2295 org.androidannotations.test.ebean.SomeBean
## 2296 org.androidannotations.test.ebean.SomeBean
## 2297 org.androidannotations.test.ebean.SomeBean
## 2298 org.androidannotations.test.ebean.SomeBean
## 2299 org.androidannotations.test.ebean.SomeBean
## 2300 org.androidannotations.test.ebean.SomeBean
## 2301 org.androidannotations.test.ebean.SomeBean
## 2302 org.androidannotations.test.ebean.SomeBean
## 2303 org.androidannotations.test.ebean.SomeBean
## 2304 org.androidannotations.test.ebean.SomeBean
## 2305 org.androidannotations.test.ebean.SomeBean
## 2306 org.androidannotations.test.ebean.SomeSingleton
## 2307 org.androidannotations.test.ebean.SomeSingleton
## 2308 org.androidannotations.test.ebean.SomeSingleton
## 2309 org.androidannotations.test.ebean.SomeSingleton
## 2310 org.androidannotations.test.ebean.SomeSingleton
## 2311 org.androidannotations.test.ebean.SomeSingleton
## 2312 org.androidannotations.test.ebean.SomeSingleton
## 2313 org.androidannotations.test.ebean.SomeSingleton
## 2314 org.androidannotations.test.ebean.SomeSingleton
## 2315 org.androidannotations.test.ebean.SomeSingleton
## 2316 org.androidannotations.test.ebean.SomeSingleton
## 2317 org.androidannotations.test.ebean.SomeSingleton
## 2318 org.androidannotations.test.ebean.SomeSingleton
## 2319 org.androidannotations.test.ebean.SomeSingleton
## 2320 org.androidannotations.test.ebean.SomeSingleton
## 2321 org.androidannotations.test.ebean.SomeSingleton
## 2322 org.androidannotations.test.ebean.SomeSingleton
## 2323 org.androidannotations.test.ebean.SomeSingleton
## 2324 org.androidannotations.test.ebean.SomeSingleton
## 2325 org.androidannotations.test.ebean.SomeSingleton
## 2326 org.androidannotations.test.ebean.SomeSingleton
## 2327 org.androidannotations.test.ebean.SomeSingleton
## 2328 org.androidannotations.test.ebean.SomeSingleton
## 2329 org.androidannotations.test.ebean.SomeSingleton
## 2330 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2331 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2332 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2333 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2334 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2335 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2336 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2337 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2338 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2339 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2340 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2341 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 2342 org.androidannotations.test.efragment.MyFragmentActivity
## 2343 org.androidannotations.test.efragment.MyFragmentActivity
## 2344 org.androidannotations.test.efragment.MyFragmentActivity
## 2345 org.androidannotations.test.efragment.MyFragmentActivity
## 2346 org.androidannotations.test.efragment.MyFragmentActivity
## 2347 org.androidannotations.test.efragment.MyFragmentActivity
## 2348 org.androidannotations.test.efragment.MyFragmentActivity
## 2349 org.androidannotations.test.efragment.MyFragmentActivity
## 2350 org.androidannotations.test.efragment.MyFragmentActivity
## 2351 org.androidannotations.test.efragment.MyFragmentActivity
## 2352 org.androidannotations.test.efragment.MyFragmentActivity
## 2353 org.androidannotations.test.efragment.MyFragmentActivity
## 2354 org.androidannotations.test.efragment.MyFragmentActivity
## 2355 org.androidannotations.test.efragment.MyFragmentActivity
## 2356 org.androidannotations.test.efragment.MyFragmentActivity
## 2357 org.androidannotations.test.efragment.MyFragmentActivity
## 2358 org.androidannotations.test.efragment.MyFragmentActivity
## 2359 org.androidannotations.test.efragment.MyFragmentActivity
## 2360 org.androidannotations.test.efragment.MyFragmentActivity
## 2361 org.androidannotations.test.efragment.MyFragmentActivity
## 2362 org.androidannotations.test.efragment.MyFragmentActivity
## 2363 org.androidannotations.test.efragment.MyFragmentActivity
## 2364 org.androidannotations.test.efragment.MyFragmentActivity
## 2365 org.androidannotations.test.efragment.MyFragmentActivity
## 2366 org.androidannotations.test.efragment.MyListFragment
## 2367 org.androidannotations.test.efragment.MyListFragment
## 2368 org.androidannotations.test.efragment.MyListFragment
## 2369 org.androidannotations.test.efragment.MyListFragment
## 2370 org.androidannotations.test.efragment.MyListFragment
## 2371 org.androidannotations.test.efragment.MyListFragment
## 2372 org.androidannotations.test.efragment.MyListFragment
## 2373 org.androidannotations.test.efragment.MyListFragment
## 2374 org.androidannotations.test.efragment.MyListFragment
## 2375 org.androidannotations.test.efragment.MyListFragment
## 2376 org.androidannotations.test.efragment.MyListFragment
## 2377 org.androidannotations.test.efragment.MyListFragment
## 2378 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2379 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2380 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2381 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2382 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2383 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2384 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2385 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2386 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2387 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2388 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2389 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2390 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2391 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2392 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2393 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2394 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2395 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2396 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2397 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2398 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2399 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2400 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2401 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2402 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2403 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2404 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2405 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2406 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2407 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2408 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2409 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2410 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2411 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2412 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2413 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2414 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2415 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2416 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2417 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2418 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2419 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2420 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2421 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2422 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2423 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2424 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2425 org.androidannotations.test.efragment.MySupportFragmentActivity
## 2426 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2427 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2428 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2429 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2430 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2431 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2432 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2433 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2434 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2435 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2436 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2437 org.androidannotations.test.ereceiver.ReceiverWithActions
## 2438 org.androidannotations.test.eview.CustomButton
## 2439 org.androidannotations.test.eview.CustomButton
## 2440 org.androidannotations.test.eview.CustomButton
## 2441 org.androidannotations.test.eview.CustomButton
## 2442 org.androidannotations.test.eview.CustomButton
## 2443 org.androidannotations.test.eview.CustomButton
## 2444 org.androidannotations.test.eview.CustomButton
## 2445 org.androidannotations.test.eview.CustomButton
## 2446 org.androidannotations.test.eview.CustomButton
## 2447 org.androidannotations.test.eview.CustomButton
## 2448 org.androidannotations.test.eview.CustomButton
## 2449 org.androidannotations.test.eview.CustomButton
## 2450 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2451 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2452 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2453 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2454 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2455 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2456 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2457 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2458 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2459 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2460 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2461 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 2462 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2463 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2464 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2465 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2466 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2467 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2468 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2469 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2470 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2471 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2472 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2473 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 2474 org.androidannotations.test.menu.InjectMenuActivity
## 2475 org.androidannotations.test.menu.InjectMenuActivity
## 2476 org.androidannotations.test.menu.InjectMenuActivity
## 2477 org.androidannotations.test.menu.InjectMenuActivity
## 2478 org.androidannotations.test.menu.InjectMenuActivity
## 2479 org.androidannotations.test.menu.InjectMenuActivity
## 2480 org.androidannotations.test.menu.InjectMenuActivity
## 2481 org.androidannotations.test.menu.InjectMenuActivity
## 2482 org.androidannotations.test.menu.InjectMenuActivity
## 2483 org.androidannotations.test.menu.InjectMenuActivity
## 2484 org.androidannotations.test.menu.InjectMenuActivity
## 2485 org.androidannotations.test.menu.InjectMenuActivity
## 2486 org.androidannotations.test.menu.OptionsMenuActivity
## 2487 org.androidannotations.test.menu.OptionsMenuActivity
## 2488 org.androidannotations.test.menu.OptionsMenuActivity
## 2489 org.androidannotations.test.menu.OptionsMenuActivity
## 2490 org.androidannotations.test.menu.OptionsMenuActivity
## 2491 org.androidannotations.test.menu.OptionsMenuActivity
## 2492 org.androidannotations.test.menu.OptionsMenuActivity
## 2493 org.androidannotations.test.menu.OptionsMenuActivity
## 2494 org.androidannotations.test.menu.OptionsMenuActivity
## 2495 org.androidannotations.test.menu.OptionsMenuActivity
## 2496 org.androidannotations.test.menu.OptionsMenuActivity
## 2497 org.androidannotations.test.menu.OptionsMenuActivity
## 2498 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2499 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2500 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2501 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2502 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2503 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2504 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2505 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2506 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2507 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2508 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2509 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 2510 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2511 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2512 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2513 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2514 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2515 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2516 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2517 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2518 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2519 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 2520 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2521 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2522 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2523 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2524 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2525 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2526 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2527 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2528 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2529 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2530 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2531 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 2532 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2533 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2534 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2535 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2536 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2537 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2538 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2539 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2540 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2541 org.androidannotations.test.preference.PreferenceHeadersActivity
## 2542 org.androidannotations.test.preference.PreferenceScreenActivity
## 2543 org.androidannotations.test.preference.PreferenceScreenActivity
## 2544 org.androidannotations.test.preference.PreferenceScreenActivity
## 2545 org.androidannotations.test.preference.PreferenceScreenActivity
## 2546 org.androidannotations.test.preference.PreferenceScreenActivity
## 2547 org.androidannotations.test.preference.PreferenceScreenActivity
## 2548 org.androidannotations.test.preference.PreferenceScreenActivity
## 2549 org.androidannotations.test.preference.PreferenceScreenActivity
## 2550 org.androidannotations.test.preference.PreferenceScreenActivity
## 2551 org.androidannotations.test.preference.PreferenceScreenActivity
## 2552 org.androidannotations.test.preference.PreferenceScreenActivity
## 2553 org.androidannotations.test.preference.PreferenceScreenActivity
## 2554 org.androidannotations.test.preference.PreferenceScreenActivity
## 2555 org.androidannotations.test.preference.PreferenceScreenActivity
## 2556 org.androidannotations.test.preference.PreferenceScreenActivity
## 2557 org.androidannotations.test.preference.PreferenceScreenActivity
## 2558 org.androidannotations.test.preference.PreferenceScreenActivity
## 2559 org.androidannotations.test.preference.PreferenceScreenActivity
## 2560 org.androidannotations.test.preference.PreferenceScreenActivity
## 2561 org.androidannotations.test.preference.PreferenceScreenActivity
## 2562 org.androidannotations.test.preference.PreferenceScreenActivity
## 2563 org.androidannotations.test.preference.PreferenceScreenActivity
## 2564 org.androidannotations.test.preference.PreferenceScreenActivity
## 2565 org.androidannotations.test.preference.PreferenceScreenActivity
## 2566 org.androidannotations.test.preference.PreferenceScreenFragment
## 2567 org.androidannotations.test.preference.PreferenceScreenFragment
## 2568 org.androidannotations.test.preference.PreferenceScreenFragment
## 2569 org.androidannotations.test.preference.PreferenceScreenFragment
## 2570 org.androidannotations.test.preference.PreferenceScreenFragment
## 2571 org.androidannotations.test.preference.PreferenceScreenFragment
## 2572 org.androidannotations.test.preference.PreferenceScreenFragment
## 2573 org.androidannotations.test.preference.PreferenceScreenFragment
## 2574 org.androidannotations.test.preference.PreferenceScreenFragment
## 2575 org.androidannotations.test.preference.PreferenceScreenFragment
## 2576 org.androidannotations.test.preference.PreferenceScreenFragment
## 2577 org.androidannotations.test.preference.PreferenceScreenFragment
## 2578 org.androidannotations.test.preference.PreferenceScreenFragment
## 2579 org.androidannotations.test.preference.PreferenceScreenFragment
## 2580 org.androidannotations.test.preference.PreferenceScreenFragment
## 2581 org.androidannotations.test.preference.PreferenceScreenFragment
## 2582 org.androidannotations.test.preference.PreferenceScreenFragment
## 2583 org.androidannotations.test.preference.PreferenceScreenFragment
## 2584 org.androidannotations.test.preference.PreferenceScreenFragment
## 2585 org.androidannotations.test.preference.PreferenceScreenFragment
## 2586 org.androidannotations.test.prefs.PrefsActivity
## 2587 org.androidannotations.test.prefs.PrefsActivity
## 2588 org.androidannotations.test.prefs.PrefsActivity
## 2589 org.androidannotations.test.prefs.PrefsActivity
## 2590 org.androidannotations.test.prefs.PrefsActivity
## 2591 org.androidannotations.test.prefs.PrefsActivity
## 2592 org.androidannotations.test.prefs.PrefsActivity
## 2593 org.androidannotations.test.prefs.PrefsActivity
## 2594 org.androidannotations.test.prefs.PrefsActivity
## 2595 org.androidannotations.test.prefs.PrefsActivity
## 2596 org.androidannotations.test.prefs.PrefsActivity
## 2597 org.androidannotations.test.prefs.PrefsActivity
## 2598 org.androidannotations.test.receiver.ActivityWithReceiver
## 2599 org.androidannotations.test.receiver.ActivityWithReceiver
## 2600 org.androidannotations.test.receiver.ActivityWithReceiver
## 2601 org.androidannotations.test.receiver.ActivityWithReceiver
## 2602 org.androidannotations.test.receiver.ActivityWithReceiver
## 2603 org.androidannotations.test.receiver.ActivityWithReceiver
## 2604 org.androidannotations.test.receiver.ActivityWithReceiver
## 2605 org.androidannotations.test.receiver.ActivityWithReceiver
## 2606 org.androidannotations.test.receiver.ActivityWithReceiver
## 2607 org.androidannotations.test.receiver.ActivityWithReceiver
## 2608 org.androidannotations.test.receiver.ActivityWithReceiver
## 2609 org.androidannotations.test.receiver.ActivityWithReceiver
## 2610 org.androidannotations.test.receiver.FragmentWithReceiver
## 2611 org.androidannotations.test.receiver.FragmentWithReceiver
## 2612 org.androidannotations.test.receiver.FragmentWithReceiver
## 2613 org.androidannotations.test.receiver.FragmentWithReceiver
## 2614 org.androidannotations.test.receiver.FragmentWithReceiver
## 2615 org.androidannotations.test.receiver.FragmentWithReceiver
## 2616 org.androidannotations.test.receiver.FragmentWithReceiver
## 2617 org.androidannotations.test.receiver.FragmentWithReceiver
## 2618 org.androidannotations.test.receiver.FragmentWithReceiver
## 2619 org.androidannotations.test.receiver.FragmentWithReceiver
## 2620 org.androidannotations.test.receiver.FragmentWithReceiver
## 2621 org.androidannotations.test.receiver.FragmentWithReceiver
## 2622 org.androidannotations.test.res.ResActivity
## 2623 org.androidannotations.test.res.ResActivity
## 2624 org.androidannotations.test.res.ResActivity
## 2625 org.androidannotations.test.res.ResActivity
## 2626 org.androidannotations.test.res.ResActivity
## 2627 org.androidannotations.test.res.ResActivity
## 2628 org.androidannotations.test.res.ResActivity
## 2629 org.androidannotations.test.res.ResActivity
## 2630 org.androidannotations.test.res.ResActivity
## 2631 org.androidannotations.test.res.ResActivity
## 2632 org.androidannotations.test.res.ResActivity
## 2633 org.androidannotations.test.res.ResActivity
## 2634 org.androidannotations.test.trace.TracedActivity
## 2635 org.androidannotations.test.trace.TracedActivity
## 2636 org.androidannotations.test.trace.TracedActivity
## 2637 org.androidannotations.test.trace.TracedActivity
## 2638 org.androidannotations.test.trace.TracedActivity
## 2639 org.androidannotations.test.trace.TracedActivity
## 2640 org.androidannotations.test.trace.TracedActivity
## 2641 org.androidannotations.test.trace.TracedActivity
## 2642 org.androidannotations.test.trace.TracedActivity
## 2643 org.androidannotations.test.trace.TracedActivity
## 2644 org.androidannotations.test.trace.TracedActivity
## 2645 org.androidannotations.test.trace.TracedActivity
## 2646 org.androidannotations.test.trace.TracedActivity
## 2647 org.androidannotations.test.trace.TracedActivity
## 2648 org.androidannotations.test.trace.TracedActivity
## 2649 org.androidannotations.test.trace.TracedActivity
## 2650 org.androidannotations.test.trace.TracedActivity
## 2651 org.androidannotations.test.trace.TracedActivity
## 2652 org.androidannotations.test.trace.TracedActivity
## 2653 org.androidannotations.test.trace.TracedActivity
## 2654 org.androidannotations.test.trace.TracedActivity
## 2655 org.androidannotations.test.trace.TracedActivity
## 2656 org.androidannotations.test.trace.TracedActivity
## 2657 org.androidannotations.test.trace.TracedActivity
## 2658 org.androidannotations.rest.spring.test.MyService
## 2659 org.androidannotations.rest.spring.test.MyService
## 2660 org.androidannotations.rest.spring.test.MyService
## 2661 org.androidannotations.rest.spring.test.MyService
## 2662 org.androidannotations.rest.spring.test.MyService
## 2663 org.androidannotations.rest.spring.test.MyService
## 2664 org.androidannotations.rest.spring.test.MyService
## 2665 org.androidannotations.rest.spring.test.MyService
## 2666 org.androidannotations.rest.spring.test.MyService
## 2667 org.androidannotations.rest.spring.test.MyService
## 2668 org.androidannotations.rest.spring.test.MyService
## 2669 org.androidannotations.rest.spring.test.MyService
## 2670 org.androidannotations.rest.spring.test.PostRestService
## 2671 org.androidannotations.rest.spring.test.PostRestService
## 2672 org.androidannotations.rest.spring.test.PostRestService
## 2673 org.androidannotations.rest.spring.test.PostRestService
## 2674 org.androidannotations.rest.spring.test.PostRestService
## 2675 org.androidannotations.rest.spring.test.PostRestService
## 2676 org.androidannotations.rest.spring.test.PostRestService
## 2677 org.androidannotations.rest.spring.test.PostRestService
## 2678 org.androidannotations.rest.spring.test.PostRestService
## 2679 org.androidannotations.rest.spring.test.PostRestService
## 2680 org.androidannotations.rest.spring.test.PostRestService
## 2681 org.androidannotations.rest.spring.test.PostRestService
## 2682 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2683 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2684 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2685 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2686 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2687 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2688 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2689 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2690 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2691 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2692 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2693 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 2694 org.androidannotations.helper.ValidatorParameterHelper
## 2695 org.androidannotations.helper.ValidatorParameterHelper
## 2696 org.androidannotations.helper.ValidatorParameterHelper
## 2697 org.androidannotations.helper.ValidatorParameterHelper
## 2698 org.androidannotations.helper.ValidatorParameterHelper
## 2699 org.androidannotations.helper.ValidatorParameterHelper
## 2700 org.androidannotations.helper.ValidatorParameterHelper
## 2701 org.androidannotations.helper.ValidatorParameterHelper
## 2702 org.androidannotations.helper.ValidatorParameterHelper
## 2703 org.androidannotations.helper.ValidatorParameterHelper
## 2704 org.androidannotations.helper.ValidatorParameterHelper
## 2705 org.androidannotations.helper.ValidatorParameterHelper
## 2706 org.androidannotations.internal.helper.AndroidManifestFinder
## 2707 org.androidannotations.internal.helper.AndroidManifestFinder
## 2708 org.androidannotations.internal.helper.AndroidManifestFinder
## 2709 org.androidannotations.internal.helper.AndroidManifestFinder
## 2710 org.androidannotations.internal.helper.AndroidManifestFinder
## 2711 org.androidannotations.internal.helper.AndroidManifestFinder
## 2712 org.androidannotations.internal.helper.AndroidManifestFinder
## 2713 org.androidannotations.internal.helper.AndroidManifestFinder
## 2714 org.androidannotations.internal.helper.AndroidManifestFinder
## 2715 org.androidannotations.internal.helper.AndroidManifestFinder
## 2716 org.androidannotations.internal.helper.AndroidManifestFinder
## 2717 org.androidannotations.internal.helper.AndroidManifestFinder
## 2718 org.androidannotations.internal.helper.AndroidManifestFinder
## 2719 org.androidannotations.internal.helper.AndroidManifestFinder
## 2720 org.androidannotations.internal.helper.AndroidManifestFinder
## 2721 org.androidannotations.internal.helper.AndroidManifestFinder
## 2722 org.androidannotations.internal.helper.AndroidManifestFinder
## 2723 org.androidannotations.internal.helper.AndroidManifestFinder
## 2724 org.androidannotations.internal.helper.AndroidManifestFinder
## 2725 org.androidannotations.internal.helper.AndroidManifestFinder
## 2726 org.androidannotations.internal.helper.AndroidManifestFinder
## 2727 org.androidannotations.internal.helper.AndroidManifestFinder
## 2728 org.androidannotations.internal.helper.AndroidManifestFinder
## 2729 org.androidannotations.internal.helper.AndroidManifestFinder
## 2730 org.androidannotations.logger.formatter.Formatter
## 2731 org.androidannotations.logger.formatter.Formatter
## 2732 org.androidannotations.logger.formatter.Formatter
## 2733 org.androidannotations.logger.formatter.Formatter
## 2734 org.androidannotations.logger.formatter.Formatter
## 2735 org.androidannotations.logger.formatter.Formatter
## 2736 org.androidannotations.logger.formatter.Formatter
## 2737 org.androidannotations.logger.formatter.Formatter
## 2738 org.androidannotations.logger.formatter.Formatter
## 2739 org.androidannotations.logger.formatter.Formatter
## 2740 org.androidannotations.logger.formatter.Formatter
## 2741 org.androidannotations.logger.formatter.Formatter
## 2742 org.androidannotations.logger.formatter.Formatter
## 2743 org.androidannotations.logger.formatter.Formatter
## 2744 org.androidannotations.logger.Logger
## 2745 org.androidannotations.logger.Logger
## 2746 org.androidannotations.logger.Logger
## 2747 org.androidannotations.logger.Logger
## 2748 org.androidannotations.logger.Logger
## 2749 org.androidannotations.logger.Logger
## 2750 org.androidannotations.logger.Logger
## 2751 org.androidannotations.logger.Logger
## 2752 org.androidannotations.logger.Logger
## 2753 org.androidannotations.logger.Logger
## 2754 org.androidannotations.logger.Logger
## 2755 org.androidannotations.logger.Logger
## 2756 org.androidannotations.logger.Logger
## 2757 org.androidannotations.logger.Logger
## 2758 org.androidannotations.test.AbstractActivity
## 2759 org.androidannotations.test.AbstractActivity
## 2760 org.androidannotations.test.AbstractActivity
## 2761 org.androidannotations.test.AbstractActivity
## 2762 org.androidannotations.test.AbstractActivity
## 2763 org.androidannotations.test.AbstractActivity
## 2764 org.androidannotations.test.AbstractActivity
## 2765 org.androidannotations.test.AbstractActivity
## 2766 org.androidannotations.test.AbstractActivity
## 2767 org.androidannotations.test.AbstractActivity
## 2768 org.androidannotations.test.AbstractActivity
## 2769 org.androidannotations.test.AbstractActivity
## 2770 org.androidannotations.test.CheckedChangeHandledActivity
## 2771 org.androidannotations.test.CheckedChangeHandledActivity
## 2772 org.androidannotations.test.CheckedChangeHandledActivity
## 2773 org.androidannotations.test.CheckedChangeHandledActivity
## 2774 org.androidannotations.test.CheckedChangeHandledActivity
## 2775 org.androidannotations.test.CheckedChangeHandledActivity
## 2776 org.androidannotations.test.CheckedChangeHandledActivity
## 2777 org.androidannotations.test.CheckedChangeHandledActivity
## 2778 org.androidannotations.test.CheckedChangeHandledActivity
## 2779 org.androidannotations.test.CheckedChangeHandledActivity
## 2780 org.androidannotations.test.CheckedChangeHandledActivity
## 2781 org.androidannotations.test.CheckedChangeHandledActivity
## 2782 org.androidannotations.test.CheckedChangeHandledActivity
## 2783 org.androidannotations.test.CheckedChangeHandledActivity
## 2784 org.androidannotations.test.CheckedChangeHandledActivity
## 2785 org.androidannotations.test.CheckedChangeHandledActivity
## 2786 org.androidannotations.test.CheckedChangeHandledActivity
## 2787 org.androidannotations.test.CheckedChangeHandledActivity
## 2788 org.androidannotations.test.CheckedChangeHandledActivity
## 2789 org.androidannotations.test.CheckedChangeHandledActivity
## 2790 org.androidannotations.test.CheckedChangeHandledActivity
## 2791 org.androidannotations.test.CheckedChangeHandledActivity
## 2792 org.androidannotations.test.CheckedChangeHandledActivity
## 2793 org.androidannotations.test.CheckedChangeHandledActivity
## 2794 org.androidannotations.test.ClicksHandledActivity
## 2795 org.androidannotations.test.ClicksHandledActivity
## 2796 org.androidannotations.test.ClicksHandledActivity
## 2797 org.androidannotations.test.ClicksHandledActivity
## 2798 org.androidannotations.test.ClicksHandledActivity
## 2799 org.androidannotations.test.ClicksHandledActivity
## 2800 org.androidannotations.test.ClicksHandledActivity
## 2801 org.androidannotations.test.ClicksHandledActivity
## 2802 org.androidannotations.test.ClicksHandledActivity
## 2803 org.androidannotations.test.ClicksHandledActivity
## 2804 org.androidannotations.test.ClicksHandledActivity
## 2805 org.androidannotations.test.ClicksHandledActivity
## 2806 org.androidannotations.test.ClicksHandledActivity
## 2807 org.androidannotations.test.ClicksHandledActivity
## 2808 org.androidannotations.test.ClicksHandledActivity
## 2809 org.androidannotations.test.ClicksHandledActivity
## 2810 org.androidannotations.test.ClicksHandledActivity
## 2811 org.androidannotations.test.ClicksHandledActivity
## 2812 org.androidannotations.test.ClicksHandledActivity
## 2813 org.androidannotations.test.ClicksHandledActivity
## 2814 org.androidannotations.test.ClicksHandledActivity
## 2815 org.androidannotations.test.ClicksHandledActivity
## 2816 org.androidannotations.test.ClicksHandledActivity
## 2817 org.androidannotations.test.ClicksHandledActivity
## 2818 org.androidannotations.test.EmptyActivityWithLayout
## 2819 org.androidannotations.test.EmptyActivityWithLayout
## 2820 org.androidannotations.test.EmptyActivityWithLayout
## 2821 org.androidannotations.test.EmptyActivityWithLayout
## 2822 org.androidannotations.test.EmptyActivityWithLayout
## 2823 org.androidannotations.test.EmptyActivityWithLayout
## 2824 org.androidannotations.test.EmptyActivityWithLayout
## 2825 org.androidannotations.test.EmptyActivityWithLayout
## 2826 org.androidannotations.test.EmptyActivityWithLayout
## 2827 org.androidannotations.test.EmptyActivityWithLayout
## 2828 org.androidannotations.test.EmptyActivityWithLayout
## 2829 org.androidannotations.test.EmptyActivityWithLayout
## 2830 org.androidannotations.test.EmptyActivityWithLayout
## 2831 org.androidannotations.test.EmptyActivityWithLayout
## 2832 org.androidannotations.test.EmptyActivityWithLayout
## 2833 org.androidannotations.test.EmptyActivityWithLayout
## 2834 org.androidannotations.test.EmptyActivityWithLayout
## 2835 org.androidannotations.test.EmptyActivityWithLayout
## 2836 org.androidannotations.test.EmptyActivityWithLayout
## 2837 org.androidannotations.test.EmptyActivityWithLayout
## 2838 org.androidannotations.test.EmptyActivityWithLayout
## 2839 org.androidannotations.test.EmptyActivityWithLayout
## 2840 org.androidannotations.test.EmptyActivityWithLayout
## 2841 org.androidannotations.test.EmptyActivityWithLayout
## 2842 org.androidannotations.test.FocusChangeHandledActivity
## 2843 org.androidannotations.test.FocusChangeHandledActivity
## 2844 org.androidannotations.test.FocusChangeHandledActivity
## 2845 org.androidannotations.test.FocusChangeHandledActivity
## 2846 org.androidannotations.test.FocusChangeHandledActivity
## 2847 org.androidannotations.test.FocusChangeHandledActivity
## 2848 org.androidannotations.test.FocusChangeHandledActivity
## 2849 org.androidannotations.test.FocusChangeHandledActivity
## 2850 org.androidannotations.test.FocusChangeHandledActivity
## 2851 org.androidannotations.test.FocusChangeHandledActivity
## 2852 org.androidannotations.test.FocusChangeHandledActivity
## 2853 org.androidannotations.test.FocusChangeHandledActivity
## 2854 org.androidannotations.test.FocusChangeHandledActivity
## 2855 org.androidannotations.test.FocusChangeHandledActivity
## 2856 org.androidannotations.test.FocusChangeHandledActivity
## 2857 org.androidannotations.test.FocusChangeHandledActivity
## 2858 org.androidannotations.test.FocusChangeHandledActivity
## 2859 org.androidannotations.test.FocusChangeHandledActivity
## 2860 org.androidannotations.test.FocusChangeHandledActivity
## 2861 org.androidannotations.test.FocusChangeHandledActivity
## 2862 org.androidannotations.test.FocusChangeHandledActivity
## 2863 org.androidannotations.test.FocusChangeHandledActivity
## 2864 org.androidannotations.test.FocusChangeHandledActivity
## 2865 org.androidannotations.test.FocusChangeHandledActivity
## 2866 org.androidannotations.test.FromHtmlActivity
## 2867 org.androidannotations.test.FromHtmlActivity
## 2868 org.androidannotations.test.FromHtmlActivity
## 2869 org.androidannotations.test.FromHtmlActivity
## 2870 org.androidannotations.test.FromHtmlActivity
## 2871 org.androidannotations.test.FromHtmlActivity
## 2872 org.androidannotations.test.FromHtmlActivity
## 2873 org.androidannotations.test.FromHtmlActivity
## 2874 org.androidannotations.test.FromHtmlActivity
## 2875 org.androidannotations.test.FromHtmlActivity
## 2876 org.androidannotations.test.FromHtmlActivity
## 2877 org.androidannotations.test.FromHtmlActivity
## 2878 org.androidannotations.test.FromHtmlActivity
## 2879 org.androidannotations.test.FromHtmlActivity
## 2880 org.androidannotations.test.FromHtmlActivity
## 2881 org.androidannotations.test.FromHtmlActivity
## 2882 org.androidannotations.test.FromHtmlActivity
## 2883 org.androidannotations.test.FromHtmlActivity
## 2884 org.androidannotations.test.FromHtmlActivity
## 2885 org.androidannotations.test.FromHtmlActivity
## 2886 org.androidannotations.test.FromHtmlActivity
## 2887 org.androidannotations.test.FromHtmlActivity
## 2888 org.androidannotations.test.FromHtmlActivity
## 2889 org.androidannotations.test.FromHtmlActivity
## 2890 org.androidannotations.test.ItemClicksHandledActivity
## 2891 org.androidannotations.test.ItemClicksHandledActivity
## 2892 org.androidannotations.test.ItemClicksHandledActivity
## 2893 org.androidannotations.test.ItemClicksHandledActivity
## 2894 org.androidannotations.test.ItemClicksHandledActivity
## 2895 org.androidannotations.test.ItemClicksHandledActivity
## 2896 org.androidannotations.test.ItemClicksHandledActivity
## 2897 org.androidannotations.test.ItemClicksHandledActivity
## 2898 org.androidannotations.test.ItemClicksHandledActivity
## 2899 org.androidannotations.test.ItemClicksHandledActivity
## 2900 org.androidannotations.test.ItemClicksHandledActivity
## 2901 org.androidannotations.test.ItemClicksHandledActivity
## 2902 org.androidannotations.test.LongClicksHandledActivity
## 2903 org.androidannotations.test.LongClicksHandledActivity
## 2904 org.androidannotations.test.LongClicksHandledActivity
## 2905 org.androidannotations.test.LongClicksHandledActivity
## 2906 org.androidannotations.test.LongClicksHandledActivity
## 2907 org.androidannotations.test.LongClicksHandledActivity
## 2908 org.androidannotations.test.LongClicksHandledActivity
## 2909 org.androidannotations.test.LongClicksHandledActivity
## 2910 org.androidannotations.test.LongClicksHandledActivity
## 2911 org.androidannotations.test.LongClicksHandledActivity
## 2912 org.androidannotations.test.LongClicksHandledActivity
## 2913 org.androidannotations.test.LongClicksHandledActivity
## 2914 org.androidannotations.test.LongClicksHandledActivity
## 2915 org.androidannotations.test.LongClicksHandledActivity
## 2916 org.androidannotations.test.LongClicksHandledActivity
## 2917 org.androidannotations.test.LongClicksHandledActivity
## 2918 org.androidannotations.test.LongClicksHandledActivity
## 2919 org.androidannotations.test.LongClicksHandledActivity
## 2920 org.androidannotations.test.LongClicksHandledActivity
## 2921 org.androidannotations.test.LongClicksHandledActivity
## 2922 org.androidannotations.test.LongClicksHandledActivity
## 2923 org.androidannotations.test.LongClicksHandledActivity
## 2924 org.androidannotations.test.LongClicksHandledActivity
## 2925 org.androidannotations.test.LongClicksHandledActivity
## 2926 org.androidannotations.test.PageChangeListenerActivity
## 2927 org.androidannotations.test.PageChangeListenerActivity
## 2928 org.androidannotations.test.PageChangeListenerActivity
## 2929 org.androidannotations.test.PageChangeListenerActivity
## 2930 org.androidannotations.test.PageChangeListenerActivity
## 2931 org.androidannotations.test.PageChangeListenerActivity
## 2932 org.androidannotations.test.PageChangeListenerActivity
## 2933 org.androidannotations.test.PageChangeListenerActivity
## 2934 org.androidannotations.test.PageChangeListenerActivity
## 2935 org.androidannotations.test.PageChangeListenerActivity
## 2936 org.androidannotations.test.PageChangeListenerActivity
## 2937 org.androidannotations.test.PageChangeListenerActivity
## 2938 org.androidannotations.test.PageChangeListenerActivity
## 2939 org.androidannotations.test.PageChangeListenerActivity
## 2940 org.androidannotations.test.PageChangeListenerActivity
## 2941 org.androidannotations.test.PageChangeListenerActivity
## 2942 org.androidannotations.test.PageChangeListenerActivity
## 2943 org.androidannotations.test.PageChangeListenerActivity
## 2944 org.androidannotations.test.PageChangeListenerActivity
## 2945 org.androidannotations.test.PageChangeListenerActivity
## 2946 org.androidannotations.test.PageChangeListenerActivity
## 2947 org.androidannotations.test.PageChangeListenerActivity
## 2948 org.androidannotations.test.PageChangeListenerActivity
## 2949 org.androidannotations.test.PageChangeListenerActivity
## 2950 org.androidannotations.test.SeekBarChangeListenedActivity
## 2951 org.androidannotations.test.SeekBarChangeListenedActivity
## 2952 org.androidannotations.test.SeekBarChangeListenedActivity
## 2953 org.androidannotations.test.SeekBarChangeListenedActivity
## 2954 org.androidannotations.test.SeekBarChangeListenedActivity
## 2955 org.androidannotations.test.SeekBarChangeListenedActivity
## 2956 org.androidannotations.test.SeekBarChangeListenedActivity
## 2957 org.androidannotations.test.SeekBarChangeListenedActivity
## 2958 org.androidannotations.test.SeekBarChangeListenedActivity
## 2959 org.androidannotations.test.SeekBarChangeListenedActivity
## 2960 org.androidannotations.test.SeekBarChangeListenedActivity
## 2961 org.androidannotations.test.SeekBarChangeListenedActivity
## 2962 org.androidannotations.test.SSLConnection
## 2963 org.androidannotations.test.SSLConnection
## 2964 org.androidannotations.test.SSLConnection
## 2965 org.androidannotations.test.SSLConnection
## 2966 org.androidannotations.test.SSLConnection
## 2967 org.androidannotations.test.SSLConnection
## 2968 org.androidannotations.test.SSLConnection
## 2969 org.androidannotations.test.SSLConnection
## 2970 org.androidannotations.test.SSLConnection
## 2971 org.androidannotations.test.SSLConnection
## 2972 org.androidannotations.test.SSLConnection
## 2973 org.androidannotations.test.SSLConnection
## 2974 org.androidannotations.test.TextWatchedActivity
## 2975 org.androidannotations.test.TextWatchedActivity
## 2976 org.androidannotations.test.TextWatchedActivity
## 2977 org.androidannotations.test.TextWatchedActivity
## 2978 org.androidannotations.test.TextWatchedActivity
## 2979 org.androidannotations.test.TextWatchedActivity
## 2980 org.androidannotations.test.TextWatchedActivity
## 2981 org.androidannotations.test.TextWatchedActivity
## 2982 org.androidannotations.test.TextWatchedActivity
## 2983 org.androidannotations.test.TextWatchedActivity
## 2984 org.androidannotations.test.TextWatchedActivity
## 2985 org.androidannotations.test.TextWatchedActivity
## 2986 org.androidannotations.test.TextWatchedActivity
## 2987 org.androidannotations.test.TextWatchedActivity
## 2988 org.androidannotations.test.TextWatchedActivity
## 2989 org.androidannotations.test.TextWatchedActivity
## 2990 org.androidannotations.test.TextWatchedActivity
## 2991 org.androidannotations.test.TextWatchedActivity
## 2992 org.androidannotations.test.TextWatchedActivity
## 2993 org.androidannotations.test.TextWatchedActivity
## 2994 org.androidannotations.test.TextWatchedActivity
## 2995 org.androidannotations.test.TextWatchedActivity
## 2996 org.androidannotations.test.TextWatchedActivity
## 2997 org.androidannotations.test.TextWatchedActivity
## 2998 org.androidannotations.test.ThreadActivity
## 2999 org.androidannotations.test.ThreadActivity
## 3000 org.androidannotations.test.ThreadActivity
## 3001 org.androidannotations.test.ThreadActivity
## 3002 org.androidannotations.test.ThreadActivity
## 3003 org.androidannotations.test.ThreadActivity
## 3004 org.androidannotations.test.ThreadActivity
## 3005 org.androidannotations.test.ThreadActivity
## 3006 org.androidannotations.test.ThreadActivity
## 3007 org.androidannotations.test.ThreadActivity
## 3008 org.androidannotations.test.ThreadActivity
## 3009 org.androidannotations.test.ThreadActivity
## 3010 org.androidannotations.test.TouchesHandledActivity
## 3011 org.androidannotations.test.TouchesHandledActivity
## 3012 org.androidannotations.test.TouchesHandledActivity
## 3013 org.androidannotations.test.TouchesHandledActivity
## 3014 org.androidannotations.test.TouchesHandledActivity
## 3015 org.androidannotations.test.TouchesHandledActivity
## 3016 org.androidannotations.test.TouchesHandledActivity
## 3017 org.androidannotations.test.TouchesHandledActivity
## 3018 org.androidannotations.test.TouchesHandledActivity
## 3019 org.androidannotations.test.TouchesHandledActivity
## 3020 org.androidannotations.test.TouchesHandledActivity
## 3021 org.androidannotations.test.TouchesHandledActivity
## 3022 org.androidannotations.test.TouchesHandledActivity
## 3023 org.androidannotations.test.TouchesHandledActivity
## 3024 org.androidannotations.test.TouchesHandledActivity
## 3025 org.androidannotations.test.TouchesHandledActivity
## 3026 org.androidannotations.test.TouchesHandledActivity
## 3027 org.androidannotations.test.TouchesHandledActivity
## 3028 org.androidannotations.test.TouchesHandledActivity
## 3029 org.androidannotations.test.TouchesHandledActivity
## 3030 org.androidannotations.test.TouchesHandledActivity
## 3031 org.androidannotations.test.TouchesHandledActivity
## 3032 org.androidannotations.test.TouchesHandledActivity
## 3033 org.androidannotations.test.TouchesHandledActivity
## 3034 org.androidannotations.test.TransactionalActivity
## 3035 org.androidannotations.test.TransactionalActivity
## 3036 org.androidannotations.test.TransactionalActivity
## 3037 org.androidannotations.test.TransactionalActivity
## 3038 org.androidannotations.test.TransactionalActivity
## 3039 org.androidannotations.test.TransactionalActivity
## 3040 org.androidannotations.test.TransactionalActivity
## 3041 org.androidannotations.test.TransactionalActivity
## 3042 org.androidannotations.test.TransactionalActivity
## 3043 org.androidannotations.test.TransactionalActivity
## 3044 org.androidannotations.test.TransactionalActivity
## 3045 org.androidannotations.test.TransactionalActivity
## 3046 org.androidannotations.test.ViewsInjectedActivity
## 3047 org.androidannotations.test.ViewsInjectedActivity
## 3048 org.androidannotations.test.ViewsInjectedActivity
## 3049 org.androidannotations.test.ViewsInjectedActivity
## 3050 org.androidannotations.test.ViewsInjectedActivity
## 3051 org.androidannotations.test.ViewsInjectedActivity
## 3052 org.androidannotations.test.ViewsInjectedActivity
## 3053 org.androidannotations.test.ViewsInjectedActivity
## 3054 org.androidannotations.test.ViewsInjectedActivity
## 3055 org.androidannotations.test.ViewsInjectedActivity
## 3056 org.androidannotations.test.ViewsInjectedActivity
## 3057 org.androidannotations.test.ViewsInjectedActivity
## 3058 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3059 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3060 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3061 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3062 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3063 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3064 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3065 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3066 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3067 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3068 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3069 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3070 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3071 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3072 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3073 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3074 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3075 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3076 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3077 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3078 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3079 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3080 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3081 org.androidannotations.test.afterextras.AfterExtrasActivity
## 3082 org.androidannotations.test.afterinject.AfterInjectActivity
## 3083 org.androidannotations.test.afterinject.AfterInjectActivity
## 3084 org.androidannotations.test.afterinject.AfterInjectActivity
## 3085 org.androidannotations.test.afterinject.AfterInjectActivity
## 3086 org.androidannotations.test.afterinject.AfterInjectActivity
## 3087 org.androidannotations.test.afterinject.AfterInjectActivity
## 3088 org.androidannotations.test.afterinject.AfterInjectActivity
## 3089 org.androidannotations.test.afterinject.AfterInjectActivity
## 3090 org.androidannotations.test.afterinject.AfterInjectActivity
## 3091 org.androidannotations.test.afterinject.AfterInjectActivity
## 3092 org.androidannotations.test.afterinject.AfterInjectActivity
## 3093 org.androidannotations.test.afterinject.AfterInjectActivity
## 3094 org.androidannotations.test.afterinject.AfterInjectActivity
## 3095 org.androidannotations.test.afterinject.AfterInjectActivity
## 3096 org.androidannotations.test.afterinject.AfterInjectActivity
## 3097 org.androidannotations.test.afterinject.AfterInjectActivity
## 3098 org.androidannotations.test.afterinject.AfterInjectActivity
## 3099 org.androidannotations.test.afterinject.AfterInjectActivity
## 3100 org.androidannotations.test.afterinject.AfterInjectActivity
## 3101 org.androidannotations.test.afterinject.AfterInjectActivity
## 3102 org.androidannotations.test.afterinject.AfterInjectActivity
## 3103 org.androidannotations.test.afterinject.AfterInjectActivity
## 3104 org.androidannotations.test.afterinject.AfterInjectActivity
## 3105 org.androidannotations.test.afterinject.AfterInjectActivity
## 3106 org.androidannotations.test.afterinject.AfterInjectBean
## 3107 org.androidannotations.test.afterinject.AfterInjectBean
## 3108 org.androidannotations.test.afterinject.AfterInjectBean
## 3109 org.androidannotations.test.afterinject.AfterInjectBean
## 3110 org.androidannotations.test.afterinject.AfterInjectBean
## 3111 org.androidannotations.test.afterinject.AfterInjectBean
## 3112 org.androidannotations.test.afterinject.AfterInjectBean
## 3113 org.androidannotations.test.afterinject.AfterInjectBean
## 3114 org.androidannotations.test.afterinject.AfterInjectBean
## 3115 org.androidannotations.test.afterinject.AfterInjectBean
## 3116 org.androidannotations.test.afterinject.AfterInjectBean
## 3117 org.androidannotations.test.afterinject.AfterInjectBean
## 3118 org.androidannotations.test.afterviews.AfterViewsActivity
## 3119 org.androidannotations.test.afterviews.AfterViewsActivity
## 3120 org.androidannotations.test.afterviews.AfterViewsActivity
## 3121 org.androidannotations.test.afterviews.AfterViewsActivity
## 3122 org.androidannotations.test.afterviews.AfterViewsActivity
## 3123 org.androidannotations.test.afterviews.AfterViewsActivity
## 3124 org.androidannotations.test.afterviews.AfterViewsActivity
## 3125 org.androidannotations.test.afterviews.AfterViewsActivity
## 3126 org.androidannotations.test.afterviews.AfterViewsActivity
## 3127 org.androidannotations.test.afterviews.AfterViewsActivity
## 3128 org.androidannotations.test.afterviews.AfterViewsActivity
## 3129 org.androidannotations.test.afterviews.AfterViewsActivity
## 3130 org.androidannotations.test.afterviews.AfterViewsActivity
## 3131 org.androidannotations.test.afterviews.AfterViewsActivity
## 3132 org.androidannotations.test.afterviews.AfterViewsActivity
## 3133 org.androidannotations.test.afterviews.AfterViewsActivity
## 3134 org.androidannotations.test.afterviews.AfterViewsActivity
## 3135 org.androidannotations.test.afterviews.AfterViewsActivity
## 3136 org.androidannotations.test.afterviews.AfterViewsActivity
## 3137 org.androidannotations.test.afterviews.AfterViewsActivity
## 3138 org.androidannotations.test.afterviews.AfterViewsActivity
## 3139 org.androidannotations.test.afterviews.AfterViewsActivity
## 3140 org.androidannotations.test.afterviews.AfterViewsActivity
## 3141 org.androidannotations.test.afterviews.AfterViewsActivity
## 3142 org.androidannotations.test.ebean.BeanInjectedActivity
## 3143 org.androidannotations.test.ebean.BeanInjectedActivity
## 3144 org.androidannotations.test.ebean.BeanInjectedActivity
## 3145 org.androidannotations.test.ebean.BeanInjectedActivity
## 3146 org.androidannotations.test.ebean.BeanInjectedActivity
## 3147 org.androidannotations.test.ebean.BeanInjectedActivity
## 3148 org.androidannotations.test.ebean.BeanInjectedActivity
## 3149 org.androidannotations.test.ebean.BeanInjectedActivity
## 3150 org.androidannotations.test.ebean.BeanInjectedActivity
## 3151 org.androidannotations.test.ebean.BeanInjectedActivity
## 3152 org.androidannotations.test.ebean.BeanInjectedActivity
## 3153 org.androidannotations.test.ebean.BeanInjectedActivity
## 3154 org.androidannotations.test.ebean.BeanInjectedActivity
## 3155 org.androidannotations.test.ebean.BeanInjectedActivity
## 3156 org.androidannotations.test.ebean.BeanInjectedActivity
## 3157 org.androidannotations.test.ebean.BeanInjectedActivity
## 3158 org.androidannotations.test.ebean.BeanInjectedActivity
## 3159 org.androidannotations.test.ebean.BeanInjectedActivity
## 3160 org.androidannotations.test.ebean.BeanInjectedActivity
## 3161 org.androidannotations.test.ebean.BeanInjectedActivity
## 3162 org.androidannotations.test.ebean.BeanInjectedActivity
## 3163 org.androidannotations.test.ebean.BeanInjectedActivity
## 3164 org.androidannotations.test.ebean.BeanInjectedActivity
## 3165 org.androidannotations.test.ebean.BeanInjectedActivity
## 3166 org.androidannotations.test.ebean.BeanInjectedActivity
## 3167 org.androidannotations.test.ebean.BeanInjectedActivity
## 3168 org.androidannotations.test.ebean.BeanInjectedActivity
## 3169 org.androidannotations.test.ebean.BeanInjectedActivity
## 3170 org.androidannotations.test.ebean.BeanInjectedActivity
## 3171 org.androidannotations.test.ebean.BeanInjectedActivity
## 3172 org.androidannotations.test.ebean.BeanInjectedActivity
## 3173 org.androidannotations.test.ebean.BeanInjectedActivity
## 3174 org.androidannotations.test.ebean.BeanInjectedActivity
## 3175 org.androidannotations.test.ebean.BeanInjectedActivity
## 3176 org.androidannotations.test.ebean.BeanInjectedActivity
## 3177 org.androidannotations.test.ebean.BeanInjectedActivity
## 3178 org.androidannotations.test.ebean.SomeBean
## 3179 org.androidannotations.test.ebean.SomeBean
## 3180 org.androidannotations.test.ebean.SomeBean
## 3181 org.androidannotations.test.ebean.SomeBean
## 3182 org.androidannotations.test.ebean.SomeBean
## 3183 org.androidannotations.test.ebean.SomeBean
## 3184 org.androidannotations.test.ebean.SomeBean
## 3185 org.androidannotations.test.ebean.SomeBean
## 3186 org.androidannotations.test.ebean.SomeBean
## 3187 org.androidannotations.test.ebean.SomeBean
## 3188 org.androidannotations.test.ebean.SomeBean
## 3189 org.androidannotations.test.ebean.SomeBean
## 3190 org.androidannotations.test.ebean.SomeSingleton
## 3191 org.androidannotations.test.ebean.SomeSingleton
## 3192 org.androidannotations.test.ebean.SomeSingleton
## 3193 org.androidannotations.test.ebean.SomeSingleton
## 3194 org.androidannotations.test.ebean.SomeSingleton
## 3195 org.androidannotations.test.ebean.SomeSingleton
## 3196 org.androidannotations.test.ebean.SomeSingleton
## 3197 org.androidannotations.test.ebean.SomeSingleton
## 3198 org.androidannotations.test.ebean.SomeSingleton
## 3199 org.androidannotations.test.ebean.SomeSingleton
## 3200 org.androidannotations.test.ebean.SomeSingleton
## 3201 org.androidannotations.test.ebean.SomeSingleton
## 3202 org.androidannotations.test.ebean.SomeSingleton
## 3203 org.androidannotations.test.ebean.SomeSingleton
## 3204 org.androidannotations.test.ebean.SomeSingleton
## 3205 org.androidannotations.test.ebean.SomeSingleton
## 3206 org.androidannotations.test.ebean.SomeSingleton
## 3207 org.androidannotations.test.ebean.SomeSingleton
## 3208 org.androidannotations.test.ebean.SomeSingleton
## 3209 org.androidannotations.test.ebean.SomeSingleton
## 3210 org.androidannotations.test.ebean.SomeSingleton
## 3211 org.androidannotations.test.ebean.SomeSingleton
## 3212 org.androidannotations.test.ebean.SomeSingleton
## 3213 org.androidannotations.test.ebean.SomeSingleton
## 3214 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3215 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3216 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3217 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3218 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3219 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3220 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3221 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3222 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3223 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3224 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3225 org.androidannotations.test.efragment.ForceLayoutInjectedListFragment
## 3226 org.androidannotations.test.efragment.MyFragmentActivity
## 3227 org.androidannotations.test.efragment.MyFragmentActivity
## 3228 org.androidannotations.test.efragment.MyFragmentActivity
## 3229 org.androidannotations.test.efragment.MyFragmentActivity
## 3230 org.androidannotations.test.efragment.MyFragmentActivity
## 3231 org.androidannotations.test.efragment.MyFragmentActivity
## 3232 org.androidannotations.test.efragment.MyFragmentActivity
## 3233 org.androidannotations.test.efragment.MyFragmentActivity
## 3234 org.androidannotations.test.efragment.MyFragmentActivity
## 3235 org.androidannotations.test.efragment.MyFragmentActivity
## 3236 org.androidannotations.test.efragment.MyFragmentActivity
## 3237 org.androidannotations.test.efragment.MyFragmentActivity
## 3238 org.androidannotations.test.efragment.MyFragmentActivity
## 3239 org.androidannotations.test.efragment.MyFragmentActivity
## 3240 org.androidannotations.test.efragment.MyFragmentActivity
## 3241 org.androidannotations.test.efragment.MyFragmentActivity
## 3242 org.androidannotations.test.efragment.MyFragmentActivity
## 3243 org.androidannotations.test.efragment.MyFragmentActivity
## 3244 org.androidannotations.test.efragment.MyFragmentActivity
## 3245 org.androidannotations.test.efragment.MyFragmentActivity
## 3246 org.androidannotations.test.efragment.MyFragmentActivity
## 3247 org.androidannotations.test.efragment.MyFragmentActivity
## 3248 org.androidannotations.test.efragment.MyFragmentActivity
## 3249 org.androidannotations.test.efragment.MyFragmentActivity
## 3250 org.androidannotations.test.efragment.MyListFragment
## 3251 org.androidannotations.test.efragment.MyListFragment
## 3252 org.androidannotations.test.efragment.MyListFragment
## 3253 org.androidannotations.test.efragment.MyListFragment
## 3254 org.androidannotations.test.efragment.MyListFragment
## 3255 org.androidannotations.test.efragment.MyListFragment
## 3256 org.androidannotations.test.efragment.MyListFragment
## 3257 org.androidannotations.test.efragment.MyListFragment
## 3258 org.androidannotations.test.efragment.MyListFragment
## 3259 org.androidannotations.test.efragment.MyListFragment
## 3260 org.androidannotations.test.efragment.MyListFragment
## 3261 org.androidannotations.test.efragment.MyListFragment
## 3262 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3263 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3264 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3265 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3266 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3267 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3268 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3269 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3270 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3271 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3272 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3273 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3274 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3275 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3276 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3277 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3278 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3279 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3280 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3281 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3282 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3283 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3284 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3285 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3286 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3287 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3288 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3289 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3290 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3291 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3292 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3293 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3294 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3295 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3296 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3297 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3298 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3299 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3300 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3301 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3302 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3303 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3304 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3305 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3306 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3307 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3308 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3309 org.androidannotations.test.efragment.MySupportFragmentActivity
## 3310 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3311 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3312 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3313 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3314 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3315 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3316 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3317 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3318 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3319 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3320 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3321 org.androidannotations.test.ereceiver.ReceiverWithActions
## 3322 org.androidannotations.test.eview.CustomButton
## 3323 org.androidannotations.test.eview.CustomButton
## 3324 org.androidannotations.test.eview.CustomButton
## 3325 org.androidannotations.test.eview.CustomButton
## 3326 org.androidannotations.test.eview.CustomButton
## 3327 org.androidannotations.test.eview.CustomButton
## 3328 org.androidannotations.test.eview.CustomButton
## 3329 org.androidannotations.test.eview.CustomButton
## 3330 org.androidannotations.test.eview.CustomButton
## 3331 org.androidannotations.test.eview.CustomButton
## 3332 org.androidannotations.test.eview.CustomButton
## 3333 org.androidannotations.test.eview.CustomButton
## 3334 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3335 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3336 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3337 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3338 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3339 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3340 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3341 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3342 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3343 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3344 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3345 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivity
## 3346 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3347 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3348 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3349 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3350 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3351 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3352 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3353 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3354 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3355 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3356 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3357 org.androidannotations.test.instancestate.SaveInstanceStateActivity
## 3358 org.androidannotations.test.menu.InjectMenuActivity
## 3359 org.androidannotations.test.menu.InjectMenuActivity
## 3360 org.androidannotations.test.menu.InjectMenuActivity
## 3361 org.androidannotations.test.menu.InjectMenuActivity
## 3362 org.androidannotations.test.menu.InjectMenuActivity
## 3363 org.androidannotations.test.menu.InjectMenuActivity
## 3364 org.androidannotations.test.menu.InjectMenuActivity
## 3365 org.androidannotations.test.menu.InjectMenuActivity
## 3366 org.androidannotations.test.menu.InjectMenuActivity
## 3367 org.androidannotations.test.menu.InjectMenuActivity
## 3368 org.androidannotations.test.menu.InjectMenuActivity
## 3369 org.androidannotations.test.menu.InjectMenuActivity
## 3370 org.androidannotations.test.menu.OptionsMenuActivity
## 3371 org.androidannotations.test.menu.OptionsMenuActivity
## 3372 org.androidannotations.test.menu.OptionsMenuActivity
## 3373 org.androidannotations.test.menu.OptionsMenuActivity
## 3374 org.androidannotations.test.menu.OptionsMenuActivity
## 3375 org.androidannotations.test.menu.OptionsMenuActivity
## 3376 org.androidannotations.test.menu.OptionsMenuActivity
## 3377 org.androidannotations.test.menu.OptionsMenuActivity
## 3378 org.androidannotations.test.menu.OptionsMenuActivity
## 3379 org.androidannotations.test.menu.OptionsMenuActivity
## 3380 org.androidannotations.test.menu.OptionsMenuActivity
## 3381 org.androidannotations.test.menu.OptionsMenuActivity
## 3382 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3383 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3384 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3385 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3386 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3387 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3388 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3389 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3390 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3391 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3392 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3393 org.androidannotations.test.nonconfiguration.NonConfigurationActivity
## 3394 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3395 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3396 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3397 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3398 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3399 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3400 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3401 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3402 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3403 org.androidannotations.test.preference.PreferenceAnnotationsFragment
## 3404 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3405 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3406 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3407 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3408 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3409 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3410 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3411 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3412 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3413 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3414 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3415 org.androidannotations.test.preference.PreferenceEventsHandledActivity
## 3416 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3417 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3418 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3419 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3420 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3421 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3422 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3423 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3424 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3425 org.androidannotations.test.preference.PreferenceHeadersActivity
## 3426 org.androidannotations.test.preference.PreferenceScreenActivity
## 3427 org.androidannotations.test.preference.PreferenceScreenActivity
## 3428 org.androidannotations.test.preference.PreferenceScreenActivity
## 3429 org.androidannotations.test.preference.PreferenceScreenActivity
## 3430 org.androidannotations.test.preference.PreferenceScreenActivity
## 3431 org.androidannotations.test.preference.PreferenceScreenActivity
## 3432 org.androidannotations.test.preference.PreferenceScreenActivity
## 3433 org.androidannotations.test.preference.PreferenceScreenActivity
## 3434 org.androidannotations.test.preference.PreferenceScreenActivity
## 3435 org.androidannotations.test.preference.PreferenceScreenActivity
## 3436 org.androidannotations.test.preference.PreferenceScreenActivity
## 3437 org.androidannotations.test.preference.PreferenceScreenActivity
## 3438 org.androidannotations.test.preference.PreferenceScreenActivity
## 3439 org.androidannotations.test.preference.PreferenceScreenActivity
## 3440 org.androidannotations.test.preference.PreferenceScreenActivity
## 3441 org.androidannotations.test.preference.PreferenceScreenActivity
## 3442 org.androidannotations.test.preference.PreferenceScreenActivity
## 3443 org.androidannotations.test.preference.PreferenceScreenActivity
## 3444 org.androidannotations.test.preference.PreferenceScreenActivity
## 3445 org.androidannotations.test.preference.PreferenceScreenActivity
## 3446 org.androidannotations.test.preference.PreferenceScreenActivity
## 3447 org.androidannotations.test.preference.PreferenceScreenActivity
## 3448 org.androidannotations.test.preference.PreferenceScreenActivity
## 3449 org.androidannotations.test.preference.PreferenceScreenActivity
## 3450 org.androidannotations.test.preference.PreferenceScreenFragment
## 3451 org.androidannotations.test.preference.PreferenceScreenFragment
## 3452 org.androidannotations.test.preference.PreferenceScreenFragment
## 3453 org.androidannotations.test.preference.PreferenceScreenFragment
## 3454 org.androidannotations.test.preference.PreferenceScreenFragment
## 3455 org.androidannotations.test.preference.PreferenceScreenFragment
## 3456 org.androidannotations.test.preference.PreferenceScreenFragment
## 3457 org.androidannotations.test.preference.PreferenceScreenFragment
## 3458 org.androidannotations.test.preference.PreferenceScreenFragment
## 3459 org.androidannotations.test.preference.PreferenceScreenFragment
## 3460 org.androidannotations.test.preference.PreferenceScreenFragment
## 3461 org.androidannotations.test.preference.PreferenceScreenFragment
## 3462 org.androidannotations.test.preference.PreferenceScreenFragment
## 3463 org.androidannotations.test.preference.PreferenceScreenFragment
## 3464 org.androidannotations.test.preference.PreferenceScreenFragment
## 3465 org.androidannotations.test.preference.PreferenceScreenFragment
## 3466 org.androidannotations.test.preference.PreferenceScreenFragment
## 3467 org.androidannotations.test.preference.PreferenceScreenFragment
## 3468 org.androidannotations.test.preference.PreferenceScreenFragment
## 3469 org.androidannotations.test.preference.PreferenceScreenFragment
## 3470 org.androidannotations.test.prefs.PrefsActivity
## 3471 org.androidannotations.test.prefs.PrefsActivity
## 3472 org.androidannotations.test.prefs.PrefsActivity
## 3473 org.androidannotations.test.prefs.PrefsActivity
## 3474 org.androidannotations.test.prefs.PrefsActivity
## 3475 org.androidannotations.test.prefs.PrefsActivity
## 3476 org.androidannotations.test.prefs.PrefsActivity
## 3477 org.androidannotations.test.prefs.PrefsActivity
## 3478 org.androidannotations.test.prefs.PrefsActivity
## 3479 org.androidannotations.test.prefs.PrefsActivity
## 3480 org.androidannotations.test.prefs.PrefsActivity
## 3481 org.androidannotations.test.prefs.PrefsActivity
## 3482 org.androidannotations.test.receiver.ActivityWithReceiver
## 3483 org.androidannotations.test.receiver.ActivityWithReceiver
## 3484 org.androidannotations.test.receiver.ActivityWithReceiver
## 3485 org.androidannotations.test.receiver.ActivityWithReceiver
## 3486 org.androidannotations.test.receiver.ActivityWithReceiver
## 3487 org.androidannotations.test.receiver.ActivityWithReceiver
## 3488 org.androidannotations.test.receiver.ActivityWithReceiver
## 3489 org.androidannotations.test.receiver.ActivityWithReceiver
## 3490 org.androidannotations.test.receiver.ActivityWithReceiver
## 3491 org.androidannotations.test.receiver.ActivityWithReceiver
## 3492 org.androidannotations.test.receiver.ActivityWithReceiver
## 3493 org.androidannotations.test.receiver.ActivityWithReceiver
## 3494 org.androidannotations.test.receiver.FragmentWithReceiver
## 3495 org.androidannotations.test.receiver.FragmentWithReceiver
## 3496 org.androidannotations.test.receiver.FragmentWithReceiver
## 3497 org.androidannotations.test.receiver.FragmentWithReceiver
## 3498 org.androidannotations.test.receiver.FragmentWithReceiver
## 3499 org.androidannotations.test.receiver.FragmentWithReceiver
## 3500 org.androidannotations.test.receiver.FragmentWithReceiver
## 3501 org.androidannotations.test.receiver.FragmentWithReceiver
## 3502 org.androidannotations.test.receiver.FragmentWithReceiver
## 3503 org.androidannotations.test.receiver.FragmentWithReceiver
## 3504 org.androidannotations.test.receiver.FragmentWithReceiver
## 3505 org.androidannotations.test.receiver.FragmentWithReceiver
## 3506 org.androidannotations.test.res.ResActivity
## 3507 org.androidannotations.test.res.ResActivity
## 3508 org.androidannotations.test.res.ResActivity
## 3509 org.androidannotations.test.res.ResActivity
## 3510 org.androidannotations.test.res.ResActivity
## 3511 org.androidannotations.test.res.ResActivity
## 3512 org.androidannotations.test.res.ResActivity
## 3513 org.androidannotations.test.res.ResActivity
## 3514 org.androidannotations.test.res.ResActivity
## 3515 org.androidannotations.test.res.ResActivity
## 3516 org.androidannotations.test.res.ResActivity
## 3517 org.androidannotations.test.res.ResActivity
## 3518 org.androidannotations.test.trace.TracedActivity
## 3519 org.androidannotations.test.trace.TracedActivity
## 3520 org.androidannotations.test.trace.TracedActivity
## 3521 org.androidannotations.test.trace.TracedActivity
## 3522 org.androidannotations.test.trace.TracedActivity
## 3523 org.androidannotations.test.trace.TracedActivity
## 3524 org.androidannotations.test.trace.TracedActivity
## 3525 org.androidannotations.test.trace.TracedActivity
## 3526 org.androidannotations.test.trace.TracedActivity
## 3527 org.androidannotations.test.trace.TracedActivity
## 3528 org.androidannotations.test.trace.TracedActivity
## 3529 org.androidannotations.test.trace.TracedActivity
## 3530 org.androidannotations.test.trace.TracedActivity
## 3531 org.androidannotations.test.trace.TracedActivity
## 3532 org.androidannotations.test.trace.TracedActivity
## 3533 org.androidannotations.test.trace.TracedActivity
## 3534 org.androidannotations.test.trace.TracedActivity
## 3535 org.androidannotations.test.trace.TracedActivity
## 3536 org.androidannotations.test.trace.TracedActivity
## 3537 org.androidannotations.test.trace.TracedActivity
## 3538 org.androidannotations.test.trace.TracedActivity
## 3539 org.androidannotations.test.trace.TracedActivity
## 3540 org.androidannotations.test.trace.TracedActivity
## 3541 org.androidannotations.test.trace.TracedActivity
## 3542 org.androidannotations.rest.spring.test.MyService
## 3543 org.androidannotations.rest.spring.test.MyService
## 3544 org.androidannotations.rest.spring.test.MyService
## 3545 org.androidannotations.rest.spring.test.MyService
## 3546 org.androidannotations.rest.spring.test.MyService
## 3547 org.androidannotations.rest.spring.test.MyService
## 3548 org.androidannotations.rest.spring.test.MyService
## 3549 org.androidannotations.rest.spring.test.MyService
## 3550 org.androidannotations.rest.spring.test.MyService
## 3551 org.androidannotations.rest.spring.test.MyService
## 3552 org.androidannotations.rest.spring.test.MyService
## 3553 org.androidannotations.rest.spring.test.MyService
## 3554 org.androidannotations.rest.spring.test.PostRestService
## 3555 org.androidannotations.rest.spring.test.PostRestService
## 3556 org.androidannotations.rest.spring.test.PostRestService
## 3557 org.androidannotations.rest.spring.test.PostRestService
## 3558 org.androidannotations.rest.spring.test.PostRestService
## 3559 org.androidannotations.rest.spring.test.PostRestService
## 3560 org.androidannotations.rest.spring.test.PostRestService
## 3561 org.androidannotations.rest.spring.test.PostRestService
## 3562 org.androidannotations.rest.spring.test.PostRestService
## 3563 org.androidannotations.rest.spring.test.PostRestService
## 3564 org.androidannotations.rest.spring.test.PostRestService
## 3565 org.androidannotations.rest.spring.test.PostRestService
## 3566 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3567 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3568 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3569 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3570 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3571 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3572 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3573 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3574 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3575 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3576 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3577 org.androidannotations.roboguice.test.ApplicationInjectedActivity
## 3578 org.androidannotations.helper.ValidatorParameterHelper
## 3579 org.androidannotations.helper.ValidatorParameterHelper
## 3580 org.androidannotations.helper.ValidatorParameterHelper
## 3581 org.androidannotations.helper.ValidatorParameterHelper
## 3582 org.androidannotations.helper.ValidatorParameterHelper
## 3583 org.androidannotations.helper.ValidatorParameterHelper
## 3584 org.androidannotations.helper.ValidatorParameterHelper
## 3585 org.androidannotations.helper.ValidatorParameterHelper
## 3586 org.androidannotations.helper.ValidatorParameterHelper
## 3587 org.androidannotations.helper.ValidatorParameterHelper
## 3588 org.androidannotations.helper.ValidatorParameterHelper
## 3589 org.androidannotations.helper.ValidatorParameterHelper
## 3590 org.androidannotations.internal.helper.AndroidManifestFinder
## 3591 org.androidannotations.internal.helper.AndroidManifestFinder
## 3592 org.androidannotations.internal.helper.AndroidManifestFinder
## 3593 org.androidannotations.internal.helper.AndroidManifestFinder
## 3594 org.androidannotations.internal.helper.AndroidManifestFinder
## 3595 org.androidannotations.internal.helper.AndroidManifestFinder
## 3596 org.androidannotations.internal.helper.AndroidManifestFinder
## 3597 org.androidannotations.internal.helper.AndroidManifestFinder
## 3598 org.androidannotations.internal.helper.AndroidManifestFinder
## 3599 org.androidannotations.internal.helper.AndroidManifestFinder
## 3600 org.androidannotations.internal.helper.AndroidManifestFinder
## 3601 org.androidannotations.internal.helper.AndroidManifestFinder
## 3602 org.androidannotations.internal.helper.AndroidManifestFinder
## 3603 org.androidannotations.internal.helper.AndroidManifestFinder
## 3604 org.androidannotations.internal.helper.AndroidManifestFinder
## 3605 org.androidannotations.internal.helper.AndroidManifestFinder
## 3606 org.androidannotations.internal.helper.AndroidManifestFinder
## 3607 org.androidannotations.internal.helper.AndroidManifestFinder
## 3608 org.androidannotations.internal.helper.AndroidManifestFinder
## 3609 org.androidannotations.internal.helper.AndroidManifestFinder
## 3610 org.androidannotations.internal.helper.AndroidManifestFinder
## 3611 org.androidannotations.internal.helper.AndroidManifestFinder
## 3612 org.androidannotations.internal.helper.AndroidManifestFinder
## 3613 org.androidannotations.internal.helper.AndroidManifestFinder
## 3614 org.androidannotations.logger.formatter.Formatter
## 3615 org.androidannotations.logger.formatter.Formatter
## 3616 org.androidannotations.logger.formatter.Formatter
## 3617 org.androidannotations.logger.formatter.Formatter
## 3618 org.androidannotations.logger.formatter.Formatter
## 3619 org.androidannotations.logger.formatter.Formatter
## 3620 org.androidannotations.logger.formatter.Formatter
## 3621 org.androidannotations.logger.formatter.Formatter
## 3622 org.androidannotations.logger.formatter.Formatter
## 3623 org.androidannotations.logger.formatter.Formatter
## 3624 org.androidannotations.logger.formatter.Formatter
## 3625 org.androidannotations.logger.formatter.Formatter
## 3626 org.androidannotations.logger.formatter.Formatter
## 3627 org.androidannotations.logger.formatter.Formatter
## 3628 org.androidannotations.logger.Logger
## 3629 org.androidannotations.logger.Logger
## 3630 org.androidannotations.logger.Logger
## 3631 org.androidannotations.logger.Logger
## 3632 org.androidannotations.logger.Logger
## 3633 org.androidannotations.logger.Logger
## 3634 org.androidannotations.logger.Logger
## 3635 org.androidannotations.logger.Logger
## 3636 org.androidannotations.logger.Logger
## 3637 org.androidannotations.logger.Logger
## 3638 org.androidannotations.logger.Logger
## 3639 org.androidannotations.logger.Logger
## 3640 org.androidannotations.logger.Logger
## 3641 org.androidannotations.logger.Logger
## 3642 org.androidannotations.test.AbstractActivity
## 3643 org.androidannotations.test.AbstractActivity
## 3644 org.androidannotations.test.AbstractActivity
## 3645 org.androidannotations.test.AbstractActivity
## 3646 org.androidannotations.test.AbstractActivity
## 3647 org.androidannotations.test.AbstractActivity
## 3648 org.androidannotations.test.AbstractActivity
## 3649 org.androidannotations.test.AbstractActivity
## 3650 org.androidannotations.test.AbstractActivity
## 3651 org.androidannotations.test.AbstractActivity
## 3652 org.androidannotations.test.AbstractActivity
## 3653 org.androidannotations.test.AbstractActivity
## 3654 org.androidannotations.test.CheckedChangeHandledActivity
## 3655 org.androidannotations.test.CheckedChangeHandledActivity
## 3656 org.androidannotations.test.CheckedChangeHandledActivity
## 3657 org.androidannotations.test.CheckedChangeHandledActivity
## 3658 org.androidannotations.test.CheckedChangeHandledActivity
## 3659 org.androidannotations.test.CheckedChangeHandledActivity
## 3660 org.androidannotations.test.CheckedChangeHandledActivity
## 3661 org.androidannotations.test.CheckedChangeHandledActivity
## 3662 org.androidannotations.test.CheckedChangeHandledActivity
## 3663 org.androidannotations.test.CheckedChangeHandledActivity
## 3664 org.androidannotations.test.CheckedChangeHandledActivity
## 3665 org.androidannotations.test.CheckedChangeHandledActivity
## 3666 org.androidannotations.test.CheckedChangeHandledActivity
## 3667 org.androidannotations.test.CheckedChangeHandledActivity
## 3668 org.androidannotations.test.CheckedChangeHandledActivity
## 3669 org.androidannotations.test.CheckedChangeHandledActivity
## 3670 org.androidannotations.test.CheckedChangeHandledActivity
## 3671 org.androidannotations.test.CheckedChangeHandledActivity
## 3672 org.androidannotations.test.CheckedChangeHandledActivity
## 3673 org.androidannotations.test.CheckedChangeHandledActivity
## 3674 org.androidannotations.test.CheckedChangeHandledActivity
## 3675 org.androidannotations.test.CheckedChangeHandledActivity
## 3676 org.androidannotations.test.CheckedChangeHandledActivity
## 3677 org.androidannotations.test.CheckedChangeHandledActivity
## 3678 org.androidannotations.test.ClicksHandledActivity
## 3679 org.androidannotations.test.ClicksHandledActivity
## 3680 org.androidannotations.test.ClicksHandledActivity
## 3681 org.androidannotations.test.ClicksHandledActivity
## 3682 org.androidannotations.test.ClicksHandledActivity
## 3683 org.androidannotations.test.ClicksHandledActivity
## 3684 org.androidannotations.test.ClicksHandledActivity
## 3685 org.androidannotations.test.ClicksHandledActivity
## 3686 org.androidannotations.test.ClicksHandledActivity
## 3687 org.androidannotations.test.ClicksHandledActivity
## 3688 org.androidannotations.test.ClicksHandledActivity
## 3689 org.androidannotations.test.ClicksHandledActivity
## 3690 org.androidannotations.test.ClicksHandledActivity
## 3691 org.androidannotations.test.ClicksHandledActivity
## 3692 org.androidannotations.test.ClicksHandledActivity
## 3693 org.androidannotations.test.ClicksHandledActivity
## 3694 org.androidannotations.test.ClicksHandledActivity
## 3695 org.androidannotations.test.ClicksHandledActivity
## 3696 org.androidannotations.test.ClicksHandledActivity
## 3697 org.androidannotations.test.ClicksHandledActivity
## 3698 org.androidannotations.test.ClicksHandledActivity
## 3699 org.androidannotations.test.ClicksHandledActivity
## 3700 org.androidannotations.test.ClicksHandledActivity
## 3701 org.androidannotations.test.ClicksHandledActivity
## 3702 org.androidannotations.test.EmptyActivityWithLayout
## 3703 org.androidannotations.test.EmptyActivityWithLayout
## 3704 org.androidannotations.test.EmptyActivityWithLayout
## 3705 org.androidannotations.test.EmptyActivityWithLayout
## 3706 org.androidannotations.test.EmptyActivityWithLayout
## 3707 org.androidannotations.test.EmptyActivityWithLayout
## 3708 org.androidannotations.test.EmptyActivityWithLayout
## 3709 org.androidannotations.test.EmptyActivityWithLayout
## 3710 org.androidannotations.test.EmptyActivityWithLayout
## 3711 org.androidannotations.test.EmptyActivityWithLayout
## 3712 org.androidannotations.test.EmptyActivityWithLayout
## 3713 org.androidannotations.test.EmptyActivityWithLayout
## 3714 org.androidannotations.test.EmptyActivityWithLayout
## 3715 org.androidannotations.test.EmptyActivityWithLayout
## 3716 org.androidannotations.test.EmptyActivityWithLayout
## 3717 org.androidannotations.test.EmptyActivityWithLayout
## 3718 org.androidannotations.test.EmptyActivityWithLayout
## 3719 org.androidannotations.test.EmptyActivityWithLayout
## 3720 org.androidannotations.test.EmptyActivityWithLayout
## 3721 org.androidannotations.test.EmptyActivityWithLayout
## 3722 org.androidannotations.test.EmptyActivityWithLayout
## 3723 org.androidannotations.test.EmptyActivityWithLayout
## 3724 org.androidannotations.test.EmptyActivityWithLayout
## 3725 org.androidannotations.test.EmptyActivityWithLayout
## 3726 org.androidannotations.test.FocusChangeHandledActivity
## 3727 org.androidannotations.test.FocusChangeHandledActivity
## 3728 org.androidannotations.test.FocusChangeHandledActivity
## 3729 org.androidannotations.test.FocusChangeHandledActivity
## 3730 org.androidannotations.test.FocusChangeHandledActivity
## 3731 org.androidannotations.test.FocusChangeHandledActivity
## 3732 org.androidannotations.test.FocusChangeHandledActivity
## 3733 org.androidannotations.test.FocusChangeHandledActivity
## 3734 org.androidannotations.test.FocusChangeHandledActivity
## 3735 org.androidannotations.test.FocusChangeHandledActivity
## 3736 org.androidannotations.test.FocusChangeHandledActivity
## 3737 org.androidannotations.test.FocusChangeHandledActivity
## 3738 org.androidannotations.test.FocusChangeHandledActivity
## 3739 org.androidannotations.test.FocusChangeHandledActivity
## 3740 org.androidannotations.test.FocusChangeHandledActivity
## 3741 org.androidannotations.test.FocusChangeHandledActivity
## 3742 org.androidannotations.test.FocusChangeHandledActivity
## 3743 org.androidannotations.test.FocusChangeHandledActivity
## 3744 org.androidannotations.test.FocusChangeHandledActivity
## 3745 org.androidannotations.test.FocusChangeHandledActivity
## 3746 org.androidannotations.test.FocusChangeHandledActivity
## 3747 org.androidannotations.test.FocusChangeHandledActivity
## 3748 org.androidannotations.test.FocusChangeHandledActivity
## 3749 org.androidannotations.test.FocusChangeHandledActivity
## 3750 org.androidannotations.test.FromHtmlActivity
## 3751 org.androidannotations.test.FromHtmlActivity
## 3752 org.androidannotations.test.FromHtmlActivity
## 3753 org.androidannotations.test.FromHtmlActivity
## 3754 org.androidannotations.test.FromHtmlActivity
## 3755 org.androidannotations.test.FromHtmlActivity
## 3756 org.androidannotations.test.FromHtmlActivity
## 3757 org.androidannotations.test.FromHtmlActivity
## 3758 org.androidannotations.test.FromHtmlActivity
## 3759 org.androidannotations.test.FromHtmlActivity
## 3760 org.androidannotations.test.FromHtmlActivity
## 3761 org.androidannotations.test.FromHtmlActivity
## 3762 org.androidannotations.test.FromHtmlActivity
## 3763 org.androidannotations.test.FromHtmlActivity
## 3764 org.androidannotations.test.FromHtmlActivity
## 3765 org.androidannotations.test.FromHtmlActivity
## 3766 org.androidannotations.test.FromHtmlActivity
## 3767 org.androidannotations.test.FromHtmlActivity
## 3768 org.androidannotations.test.FromHtmlActivity
## 3769 org.androidannotations.test.FromHtmlActivity
## 3770 org.androidannotations.test.FromHtmlActivity
## 3771 org.androidannotations.test.FromHtmlActivity
## 3772 org.androidannotations.test.FromHtmlActivity
## 3773 org.androidannotations.test.FromHtmlActivity
## 3774 org.androidannotations.test.ItemClicksHandledActivity
## 3775 org.androidannotations.test.ItemClicksHandledActivity
## 3776 org.androidannotations.test.ItemClicksHandledActivity
## 3777 org.androidannotations.test.ItemClicksHandledActivity
## 3778 org.androidannotations.test.ItemClicksHandledActivity
## 3779 org.androidannotations.test.ItemClicksHandledActivity
## 3780 org.androidannotations.test.ItemClicksHandledActivity
## 3781 org.androidannotations.test.ItemClicksHandledActivity
## 3782 org.androidannotations.test.ItemClicksHandledActivity
## 3783 org.androidannotations.test.ItemClicksHandledActivity
## 3784 org.androidannotations.test.ItemClicksHandledActivity
## 3785 org.androidannotations.test.ItemClicksHandledActivity
## 3786 org.androidannotations.test.LongClicksHandledActivity
## 3787 org.androidannotations.test.LongClicksHandledActivity
## 3788 org.androidannotations.test.LongClicksHandledActivity
## 3789 org.androidannotations.test.LongClicksHandledActivity
## 3790 org.androidannotations.test.LongClicksHandledActivity
## 3791 org.androidannotations.test.LongClicksHandledActivity
## 3792 org.androidannotations.test.LongClicksHandledActivity
## 3793 org.androidannotations.test.LongClicksHandledActivity
## 3794 org.androidannotations.test.LongClicksHandledActivity
## 3795 org.androidannotations.test.LongClicksHandledActivity
## 3796 org.androidannotations.test.LongClicksHandledActivity
## 3797 org.androidannotations.test.LongClicksHandledActivity
## 3798 org.androidannotations.test.LongClicksHandledActivity
## 3799 org.androidannotations.test.LongClicksHandledActivity
## 3800 org.androidannotations.test.LongClicksHandledActivity
## 3801 org.androidannotations.test.LongClicksHandledActivity
## 3802 org.androidannotations.test.LongClicksHandledActivity
## 3803 org.androidannotations.test.LongClicksHandledActivity
## 3804 org.androidannotations.test.LongClicksHandledActivity
## 3805 org.androidannotations.test.LongClicksHandledActivity
## 3806 org.androidannotations.test.LongClicksHandledActivity
## 3807 org.androidannotations.test.LongClicksHandledActivity
## 3808 org.androidannotations.test.LongClicksHandledActivity
## 3809 org.androidannotations.test.LongClicksHandledActivity
## 3810 org.androidannotations.test.PageChangeListenerActivity
## 3811 org.androidannotations.test.PageChangeListenerActivity
## 3812 org.androidannotations.test.PageChangeListenerActivity
## 3813 org.androidannotations.test.PageChangeListenerActivity
## 3814 org.androidannotations.test.PageChangeListenerActivity
## 3815 org.androidannotations.test.PageChangeListenerActivity
## 3816 org.androidannotations.test.PageChangeListenerActivity
## 3817 org.androidannotations.test.PageChangeListenerActivity
## 3818 org.androidannotations.test.PageChangeListenerActivity
## 3819 org.androidannotations.test.PageChangeListenerActivity
## 3820 org.androidannotations.test.PageChangeListenerActivity
## 3821 org.androidannotations.test.PageChangeListenerActivity
## 3822 org.androidannotations.test.PageChangeListenerActivity
## 3823 org.androidannotations.test.PageChangeListenerActivity
## 3824 org.androidannotations.test.PageChangeListenerActivity
## 3825 org.androidannotations.test.PageChangeListenerActivity
## 3826 org.androidannotations.test.PageChangeListenerActivity
## 3827 org.androidannotations.test.PageChangeListenerActivity
## 3828 org.androidannotations.test.PageChangeListenerActivity
## 3829 org.androidannotations.test.PageChangeListenerActivity
## 3830 org.androidannotations.test.PageChangeListenerActivity
## 3831 org.androidannotations.test.PageChangeListenerActivity
## 3832 org.androidannotations.test.PageChangeListenerActivity
## 3833 org.androidannotations.test.PageChangeListenerActivity
## 3834 org.androidannotations.test.SeekBarChangeListenedActivity
## 3835 org.androidannotations.test.SeekBarChangeListenedActivity
## 3836 org.androidannotations.test.SeekBarChangeListenedActivity
## 3837 org.androidannotations.test.SeekBarChangeListenedActivity
## 3838 org.androidannotations.test.SeekBarChangeListenedActivity
## 3839 org.androidannotations.test.SeekBarChangeListenedActivity
## 3840 org.androidannotations.test.SeekBarChangeListenedActivity
## 3841 org.androidannotations.test.SeekBarChangeListenedActivity
## 3842 org.androidannotations.test.SeekBarChangeListenedActivity
## 3843 org.androidannotations.test.SeekBarChangeListenedActivity
## 3844 org.androidannotations.test.SeekBarChangeListenedActivity
## 3845 org.androidannotations.test.SeekBarChangeListenedActivity
## 3846 org.androidannotations.test.SSLConnection
## NameTag.y HashCommit.y
## 1 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 2 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 3 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 4 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 5 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 6 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 7 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 8 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 9 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 10 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 11 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 12 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 13 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 14 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 15 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 16 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 17 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 18 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 19 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 20 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 21 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 22 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 23 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 24 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 25 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 26 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 27 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 28 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 29 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 30 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 31 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 32 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 33 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 34 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 35 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 36 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 37 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 38 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 39 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 40 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 41 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 42 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 43 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 44 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 45 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 46 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 47 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 48 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 49 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 50 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 51 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 52 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 53 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 54 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 55 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 56 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 57 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 58 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 59 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 60 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 61 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 62 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 63 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 64 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 65 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 66 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 67 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 68 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 69 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 70 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 71 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 72 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 73 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 74 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 75 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 76 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 77 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 78 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 79 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 80 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 81 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 82 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 83 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 84 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 85 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 86 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 87 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 88 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 89 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 90 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 91 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 92 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 93 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 94 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 95 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 96 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 97 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 98 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 99 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 100 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 101 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 102 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 103 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 104 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 105 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 106 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 107 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 108 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 109 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 110 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 111 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 112 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 113 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 114 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 115 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 116 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 117 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 118 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 119 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 120 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 121 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 122 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 123 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 124 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 125 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 126 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 127 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 128 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 129 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 130 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 131 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 132 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 133 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 134 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 135 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 136 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 137 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 138 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 139 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 140 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 141 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 142 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 143 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 144 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 145 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 146 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 147 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 148 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 149 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 150 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 151 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 152 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 153 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 154 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 155 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 156 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 157 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 158 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 159 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 160 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 161 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 162 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 163 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 164 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 165 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 166 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 167 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 168 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 169 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 170 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 171 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 172 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 173 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 174 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 175 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 176 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 177 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 178 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 179 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 180 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 181 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 182 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 183 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 184 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 185 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 186 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 187 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 188 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 189 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 190 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 191 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 192 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 193 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 194 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 195 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 196 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 197 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 198 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 199 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 200 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 201 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 202 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 203 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 204 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 205 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 206 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 207 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 208 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 209 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 210 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 211 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 212 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 213 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 214 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 215 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 216 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 217 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 218 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 219 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 220 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 221 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 222 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 223 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 224 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 225 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 226 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 227 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 228 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 229 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 230 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 231 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 232 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 233 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 234 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 235 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 236 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 237 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 238 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 239 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 240 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 241 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 242 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 243 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 244 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 245 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 246 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 247 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 248 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 249 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 250 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 251 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 252 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 253 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 254 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 255 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 256 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 257 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 258 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 259 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 260 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 261 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 262 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 263 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 264 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 265 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 266 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 267 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 268 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 269 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 270 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 271 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 272 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 273 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 274 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 275 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 276 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 277 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 278 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 279 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 280 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 281 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 282 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 283 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 284 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 285 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 286 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 287 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 288 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 289 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 290 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 291 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 292 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 293 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 294 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 295 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 296 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 297 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 298 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 299 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 300 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 301 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 302 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 303 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 304 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 305 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 306 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 307 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 308 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 309 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 310 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 311 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 312 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 313 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 314 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 315 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 316 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 317 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 318 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 319 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 320 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 321 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 322 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 323 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 324 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 325 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 326 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 327 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 328 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 329 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 330 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 331 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 332 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 333 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 334 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 335 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 336 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 337 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 338 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 339 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 340 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 341 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 342 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 343 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 344 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 345 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 346 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 347 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 348 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 349 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 350 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 351 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 352 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 353 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 354 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 355 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 356 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 357 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 358 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 359 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 360 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 361 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 362 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 363 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 364 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 365 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 366 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 367 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 368 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 369 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 370 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 371 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 372 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 373 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 374 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 375 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 376 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 377 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 378 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 379 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 380 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 381 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 382 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 383 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 384 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 385 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 386 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 387 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 388 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 389 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 390 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 391 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 392 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 393 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 394 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 395 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 396 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 397 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 398 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 399 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 400 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 401 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 402 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 403 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 404 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 405 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 406 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 407 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 408 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 409 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 410 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 411 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 412 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 413 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 414 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 415 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 416 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 417 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 418 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 419 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 420 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 421 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 422 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 423 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 424 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 425 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 426 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 427 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 428 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 429 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 430 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 431 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 432 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 433 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 434 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 435 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 436 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 437 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 438 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 439 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 440 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 441 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 442 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 443 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 444 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 445 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 446 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 447 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 448 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 449 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 450 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 451 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 452 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 453 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 454 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 455 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 456 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 457 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 458 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 459 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 460 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 461 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 462 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 463 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 464 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 465 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 466 androidannotations-2.2-RC1 c4245b6ffce3c5eae94c9b9e6c66a422af3c5bd8
## 467 androidannotations-2.2 2ad63a0e5cf5af0b4cdd09b102504ea10d4f9d6e
## 468 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 469 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 470 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 471 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 472 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 473 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 474 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 475 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 476 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 477 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 478 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 479 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 480 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 481 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 482 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 483 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 484 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 485 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 486 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 487 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 488 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 489 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 490 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 491 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 492 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 493 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 494 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 495 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 496 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 497 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 498 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 499 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 500 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 501 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 502 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 503 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 504 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 505 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 506 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 507 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 508 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 509 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 510 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 511 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 512 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 513 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 514 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 515 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 516 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 517 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 518 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 519 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 520 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 521 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 522 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 523 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 524 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 525 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 526 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 527 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 528 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 529 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 530 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 531 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 532 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 533 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 534 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 535 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 536 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 537 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 538 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 539 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 540 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 541 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 542 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 543 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 544 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 545 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 546 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 547 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 548 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 549 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 550 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 551 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 552 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 553 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 554 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 555 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 556 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 557 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 558 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 559 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 560 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 561 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 562 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 563 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 564 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 565 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 566 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 567 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 568 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 569 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 570 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 571 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 572 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 573 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 574 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 575 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 576 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 577 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 578 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 579 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 580 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 581 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 582 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 583 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 584 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 585 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 586 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 587 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 588 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 589 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 590 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 591 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 592 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 593 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 594 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 595 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 596 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 597 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 598 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 599 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 600 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 601 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 602 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 603 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 604 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 605 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 606 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 607 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 608 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 609 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 610 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 611 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 612 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 613 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 614 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 615 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 616 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 617 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 618 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 619 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 620 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 621 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 622 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 623 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 624 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 625 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 626 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 627 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 628 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 629 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 630 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 631 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 632 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 633 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 634 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 635 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 636 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 637 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 638 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 639 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 640 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 641 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 642 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 643 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 644 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 645 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 646 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 647 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 648 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 649 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 650 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 651 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 652 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 653 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 654 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 655 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 656 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 657 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 658 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 659 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 660 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 661 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 662 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 663 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 664 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 665 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 666 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 667 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 668 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 669 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 670 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 671 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 672 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 673 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 674 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 675 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 676 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 677 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 678 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 679 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 680 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 681 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 682 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 683 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 684 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 685 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 686 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 687 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 688 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 689 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 690 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 691 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 692 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 693 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 694 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 695 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 696 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 697 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 698 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 699 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 700 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 701 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 702 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 703 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 704 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 705 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 706 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 707 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 708 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 709 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 710 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 711 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 712 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 713 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 714 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 715 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 716 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 717 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 718 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 719 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 720 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 721 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 722 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 723 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 724 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 725 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 726 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 727 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 728 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 729 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 730 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 731 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 732 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 733 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 734 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 735 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 736 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 737 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 738 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 739 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 740 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 741 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 742 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 743 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 744 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 745 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 746 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 747 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 748 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 749 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 750 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 751 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 752 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 753 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 754 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 755 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 756 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 757 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 758 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 759 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 760 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 761 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 762 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 763 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 764 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 765 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 766 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 767 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 768 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 769 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 770 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 771 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 772 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 773 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 774 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 775 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 776 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 777 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 778 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 779 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 780 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 781 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 782 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 783 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 784 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 785 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 786 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 787 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 788 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 789 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 790 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 791 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 792 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 793 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 794 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 795 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 796 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 797 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 798 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 799 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 800 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 801 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 802 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 803 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 804 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 805 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 806 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 807 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 808 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 809 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 810 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 811 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 812 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 813 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 814 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 815 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 816 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 817 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 818 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 819 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 820 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 821 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 822 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 823 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 824 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 825 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 826 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 827 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 828 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 829 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 830 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 831 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 832 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 833 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 834 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 835 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 836 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 837 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 838 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 839 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 840 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 841 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 842 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 843 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 844 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 845 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 846 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 847 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 848 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 849 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 850 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 851 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 852 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 853 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 854 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 855 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 856 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 857 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 858 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 859 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 860 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 861 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 862 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 863 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 864 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 865 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 866 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 867 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 868 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 869 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 870 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 871 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 872 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 873 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 874 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 875 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 876 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 877 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 878 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 879 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 880 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 881 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 882 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 883 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 884 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 885 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 886 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 887 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 888 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 889 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 890 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 891 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 892 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 893 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 894 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 895 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 896 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 897 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 898 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 899 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 900 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 901 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 902 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 903 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 904 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 905 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 906 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 907 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 908 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 909 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 910 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 911 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 912 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 913 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 914 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 915 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 916 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 917 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 918 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 919 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 920 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 921 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 922 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 923 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 924 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 925 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 926 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 927 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 928 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 929 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 930 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 931 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 932 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 933 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 934 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 935 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 936 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 937 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 938 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 939 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 940 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 941 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 942 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 943 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 944 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 945 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 946 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 947 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 948 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 949 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 950 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 951 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 952 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 953 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 954 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 955 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 956 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 957 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 958 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 959 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 960 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 961 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 962 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 963 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 964 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 965 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 966 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 967 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 968 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 969 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 970 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 971 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 972 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 973 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 974 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 975 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 976 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 977 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 978 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 979 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 980 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 981 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 982 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 983 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 984 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 985 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 986 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 987 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 988 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 989 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 990 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 991 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 992 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 993 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 994 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 995 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 996 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 997 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 998 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 999 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1000 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1001 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1002 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1003 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1004 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1005 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1006 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1007 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1008 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1009 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1010 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1011 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1012 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1013 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1014 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1015 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1016 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1017 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1018 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1019 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1020 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1021 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1022 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1023 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1024 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1025 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1026 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1027 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1028 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1029 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1030 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1031 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1032 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1033 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1034 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1035 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1036 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1037 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1038 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1039 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1040 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1041 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1042 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1043 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1044 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1045 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1046 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1047 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1048 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1049 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1050 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1051 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1052 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1053 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1054 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1055 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1056 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1057 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1058 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1059 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1060 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1061 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1062 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1063 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1064 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1065 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1066 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1067 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1068 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1069 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1070 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1071 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1072 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1073 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1074 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1075 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1076 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1077 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1078 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1079 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1080 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1081 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1082 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1083 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1084 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1085 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1086 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1087 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1088 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1089 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1090 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1091 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1092 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1093 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1094 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1095 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1096 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1097 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1098 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1099 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1100 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1101 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1102 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1103 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1104 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1105 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1106 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1107 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1108 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1109 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1110 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1111 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1112 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1113 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1114 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1115 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1116 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1117 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1118 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1119 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1120 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1121 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1122 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1123 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1124 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1125 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1126 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1127 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1128 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1129 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1130 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1131 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1132 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1133 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1134 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1135 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1136 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1137 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1138 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1139 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1140 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1141 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1142 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1143 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1144 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1145 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1146 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1147 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1148 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1149 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1150 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1151 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1152 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1153 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1154 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1155 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1156 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1157 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1158 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1159 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1160 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1161 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1162 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1163 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1164 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1165 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1166 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1167 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1168 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1169 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1170 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1171 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1172 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1173 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1174 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1175 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1176 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1177 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1178 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1179 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1180 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1181 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1182 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1183 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1184 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1185 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1186 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1187 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1188 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1189 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1190 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1191 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1192 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1193 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1194 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1195 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1196 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1197 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1198 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1199 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1200 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1201 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1202 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1203 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1204 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1205 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1206 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1207 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1208 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1209 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1210 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1211 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1212 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1213 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1214 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1215 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1216 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1217 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1218 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1219 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1220 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1221 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1222 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1223 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1224 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1225 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1226 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1227 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1228 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1229 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1230 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1231 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1232 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1233 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1234 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1235 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1236 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1237 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1238 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1239 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1240 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1241 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1242 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1243 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1244 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1245 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1246 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1247 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1248 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1249 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1250 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1251 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1252 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1253 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1254 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1255 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1256 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1257 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1258 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1259 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1260 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1261 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1262 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1263 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1264 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1265 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1266 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1267 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1268 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1269 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1270 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1271 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1272 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1273 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1274 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1275 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1276 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1277 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1278 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1279 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1280 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1281 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1282 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1283 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1284 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1285 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1286 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1287 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1288 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1289 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1290 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1291 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1292 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1293 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1294 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1295 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1296 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1297 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1298 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1299 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1300 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1301 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1302 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1303 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1304 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1305 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1306 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1307 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1308 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1309 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1310 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1311 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1312 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1313 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1314 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1315 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1316 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1317 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1318 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1319 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1320 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1321 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1322 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1323 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1324 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1325 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1326 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1327 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1328 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1329 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1330 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1331 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1332 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1333 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1334 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1335 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1336 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1337 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1338 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1339 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1340 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1341 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1342 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1343 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1344 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1345 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1346 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1347 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1348 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1349 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1350 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1351 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1352 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1353 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1354 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1355 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1356 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1357 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1358 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1359 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1360 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1361 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1362 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1363 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1364 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1365 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1366 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1367 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1368 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1369 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1370 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1371 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1372 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1373 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1374 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1375 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1376 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1377 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1378 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1379 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1380 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1381 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1382 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1383 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1384 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1385 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1386 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1387 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1388 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1389 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1390 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1391 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1392 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1393 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1394 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1395 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1396 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1397 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1398 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1399 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1400 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1401 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1402 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1403 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1404 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1405 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1406 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1407 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1408 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1409 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1410 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1411 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1412 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1413 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1414 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1415 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1416 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1417 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1418 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1419 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1420 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1421 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1422 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1423 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1424 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1425 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1426 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1427 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1428 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1429 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1430 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1431 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1432 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1433 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1434 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1435 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1436 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1437 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1438 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1439 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1440 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1441 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1442 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1443 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1444 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1445 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1446 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1447 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1448 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1449 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1450 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1451 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1452 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1453 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1454 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1455 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1456 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1457 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1458 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1459 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1460 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1461 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1462 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1463 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1464 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1465 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1466 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1467 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1468 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1469 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1470 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1471 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1472 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1473 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1474 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1475 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1476 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1477 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1478 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1479 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1480 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1481 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1482 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1483 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1484 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1485 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1486 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1487 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1488 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1489 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1490 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1491 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1492 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1493 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1494 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1495 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1496 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1497 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1498 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1499 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1500 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1501 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1502 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1503 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1504 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1505 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1506 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1507 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1508 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1509 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1510 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1511 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1512 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1513 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1514 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1515 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1516 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1517 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1518 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1519 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1520 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1521 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1522 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1523 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1524 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1525 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1526 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1527 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1528 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1529 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1530 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1531 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1532 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1533 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1534 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1535 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1536 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1537 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1538 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1539 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1540 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1541 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1542 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1543 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1544 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1545 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1546 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1547 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1548 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1549 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1550 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1551 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1552 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1553 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1554 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1555 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1556 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1557 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1558 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1559 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1560 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1561 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1562 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1563 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1564 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1565 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1566 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1567 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1568 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1569 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1570 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1571 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1572 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1573 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1574 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1575 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1576 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1577 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1578 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1579 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1580 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1581 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1582 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1583 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1584 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1585 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1586 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1587 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1588 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1589 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1590 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1591 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1592 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1593 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1594 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1595 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1596 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1597 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1598 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1599 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1600 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1601 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1602 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1603 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1604 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1605 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1606 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1607 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1608 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1609 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1610 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1611 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1612 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1613 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1614 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1615 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1616 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1617 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1618 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1619 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1620 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1621 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1622 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1623 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1624 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1625 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1626 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1627 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1628 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1629 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1630 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1631 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1632 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1633 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1634 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1635 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1636 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1637 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1638 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1639 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1640 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1641 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1642 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1643 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1644 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1645 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1646 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1647 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1648 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1649 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1650 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1651 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1652 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1653 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1654 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1655 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1656 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1657 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1658 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1659 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1660 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1661 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1662 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1663 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1664 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1665 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1666 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1667 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1668 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1669 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1670 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1671 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1672 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1673 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1674 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1675 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1676 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1677 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1678 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1679 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1680 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1681 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1682 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1683 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1684 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1685 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1686 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1687 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1688 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1689 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1690 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1691 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1692 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1693 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1694 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1695 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1696 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1697 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1698 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1699 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1700 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1701 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1702 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1703 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1704 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1705 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1706 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1707 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1708 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1709 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1710 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1711 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1712 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1713 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1714 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1715 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1716 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1717 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1718 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1719 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1720 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1721 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1722 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1723 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1724 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1725 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1726 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1727 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1728 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1729 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1730 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1731 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1732 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1733 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1734 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1735 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1736 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1737 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1738 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1739 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1740 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1741 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1742 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1743 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1744 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1745 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1746 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1747 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1748 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1749 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1750 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1751 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1752 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1753 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1754 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1755 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1756 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1757 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1758 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1759 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1760 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1761 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1762 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1763 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1764 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1765 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1766 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1767 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1768 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1769 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1770 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1771 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1772 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1773 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1774 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1775 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1776 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1777 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1778 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1779 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1780 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1781 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1782 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1783 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1784 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1785 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1786 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1787 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1788 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1789 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1790 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1791 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1792 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1793 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1794 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1795 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1796 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1797 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1798 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1799 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1800 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1801 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1802 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1803 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1804 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1805 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1806 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1807 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1808 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1809 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1810 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1811 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1812 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1813 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1814 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1815 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1816 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1817 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1818 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1819 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1820 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1821 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1822 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1823 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1824 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1825 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1826 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1827 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1828 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1829 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1830 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1831 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1832 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1833 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1834 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1835 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1836 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1837 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1838 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1839 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1840 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1841 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1842 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1843 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1844 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1845 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1846 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1847 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1848 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1849 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1850 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1851 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1852 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1853 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1854 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1855 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1856 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1857 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1858 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1859 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1860 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 1861 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 1862 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1863 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1864 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1865 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1866 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1867 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1868 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1869 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1870 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1871 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1872 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1873 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1874 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1875 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1876 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1877 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1878 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1879 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1880 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1881 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1882 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1883 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1884 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1885 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1886 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1887 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1888 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1889 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1890 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1891 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1892 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1893 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1894 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1895 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1896 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1897 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1898 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1899 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1900 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1901 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1902 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1903 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1904 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1905 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1906 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1907 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1908 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1909 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1910 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1911 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1912 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1913 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1914 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1915 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1916 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1917 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1918 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1919 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1920 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1921 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1922 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1923 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1924 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1925 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1926 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1927 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1928 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1929 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1930 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1931 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1932 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1933 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1934 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1935 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1936 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1937 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1938 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1939 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1940 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1941 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1942 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1943 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1944 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1945 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1946 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1947 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1948 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1949 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1950 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1951 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1952 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1953 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1954 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1955 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1956 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1957 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1958 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1959 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1960 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1961 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1962 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1963 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1964 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1965 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1966 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1967 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1968 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1969 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1970 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1971 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1972 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1973 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1974 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1975 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1976 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1977 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1978 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1979 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1980 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1981 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1982 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1983 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1984 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1985 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1986 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1987 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 1988 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 1989 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 1990 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 1991 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 1992 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 1993 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 1994 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 1995 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 1996 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 1997 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 1998 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 1999 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2000 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2001 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2002 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2003 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2004 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2005 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2006 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2007 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2008 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2009 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2010 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2011 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2012 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2013 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2014 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2015 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2016 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2017 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2018 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2019 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2020 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2021 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2022 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2023 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2024 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2025 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2026 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2027 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2028 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2029 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2030 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2031 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2032 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2033 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2034 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2035 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2036 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2037 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2038 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2039 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2040 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2041 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2042 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2043 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2044 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2045 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2046 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2047 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2048 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2049 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2050 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2051 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2052 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2053 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2054 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2055 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2056 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2057 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2058 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2059 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2060 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2061 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2062 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2063 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2064 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2065 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2066 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2067 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2068 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2069 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2070 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2071 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2072 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2073 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2074 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2075 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2076 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2077 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2078 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2079 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2080 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2081 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2082 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2083 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2084 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2085 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2086 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2087 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2088 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2089 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2090 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2091 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2092 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2093 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2094 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2095 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2096 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2097 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2098 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2099 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2100 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2101 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2102 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2103 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2104 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2105 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2106 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2107 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2108 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2109 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2110 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2111 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2112 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2113 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2114 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2115 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2116 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2117 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2118 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2119 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2120 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2121 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2122 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2123 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2124 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2125 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2126 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2127 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2128 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2129 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2130 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2131 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2132 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2133 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2134 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2135 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2136 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2137 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2138 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2139 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2140 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2141 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2142 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2143 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2144 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2145 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2146 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2147 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2148 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2149 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2150 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2151 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2152 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2153 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2154 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2155 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2156 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2157 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2158 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2159 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2160 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2161 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2162 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2163 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2164 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2165 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2166 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2167 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2168 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2169 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2170 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2171 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2172 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2173 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2174 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2175 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2176 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2177 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2178 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2179 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2180 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2181 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2182 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2183 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2184 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2185 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2186 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2187 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2188 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2189 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2190 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2191 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2192 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2193 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2194 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2195 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2196 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2197 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2198 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2199 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2200 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2201 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2202 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2203 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2204 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2205 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2206 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2207 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2208 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2209 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2210 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2211 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2212 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2213 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2214 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2215 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2216 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2217 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2218 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2219 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2220 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2221 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2222 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2223 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2224 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2225 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2226 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2227 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2228 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2229 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2230 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2231 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2232 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2233 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2234 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2235 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2236 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2237 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2238 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2239 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2240 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2241 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2242 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2243 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2244 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2245 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2246 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2247 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2248 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2249 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2250 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2251 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2252 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2253 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2254 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2255 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2256 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2257 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2258 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2259 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2260 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2261 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2262 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2263 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2264 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2265 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2266 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2267 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2268 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2269 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2270 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2271 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2272 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2273 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2274 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2275 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2276 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2277 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2278 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2279 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2280 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2281 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2282 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2283 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2284 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2285 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2286 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2287 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2288 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2289 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2290 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2291 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2292 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2293 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2294 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2295 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2296 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2297 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2298 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2299 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2300 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2301 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2302 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2303 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2304 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2305 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2306 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2307 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2308 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2309 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2310 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2311 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2312 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2313 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2314 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2315 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2316 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2317 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2318 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2319 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2320 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2321 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2322 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2323 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2324 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2325 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2326 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2327 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2328 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2329 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2330 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2331 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2332 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2333 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2334 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2335 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2336 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2337 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2338 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2339 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2340 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2341 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2342 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2343 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2344 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2345 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2346 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2347 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2348 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2349 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2350 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2351 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2352 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2353 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2354 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2355 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2356 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2357 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2358 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2359 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2360 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2361 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2362 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2363 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2364 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2365 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2366 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2367 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2368 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2369 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2370 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2371 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2372 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2373 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2374 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2375 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2376 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2377 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2378 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2379 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2380 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2381 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2382 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2383 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2384 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2385 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2386 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2387 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2388 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2389 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2390 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2391 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2392 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2393 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2394 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2395 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2396 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2397 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2398 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2399 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2400 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2401 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2402 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2403 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2404 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2405 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2406 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2407 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2408 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2409 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2410 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2411 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2412 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2413 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2414 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2415 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2416 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2417 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2418 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2419 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2420 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2421 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2422 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2423 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2424 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2425 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2426 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2427 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2428 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2429 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2430 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2431 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2432 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2433 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2434 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2435 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2436 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2437 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2438 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2439 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2440 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2441 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2442 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2443 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2444 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2445 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2446 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2447 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2448 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2449 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2450 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2451 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2452 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2453 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2454 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2455 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2456 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2457 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2458 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2459 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2460 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2461 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2462 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2463 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2464 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2465 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2466 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2467 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2468 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2469 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2470 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2471 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2472 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2473 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2474 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2475 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2476 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2477 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2478 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2479 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2480 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2481 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2482 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2483 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2484 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2485 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2486 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2487 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2488 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2489 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2490 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2491 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2492 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2493 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2494 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2495 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2496 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2497 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2498 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2499 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2500 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2501 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2502 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2503 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2504 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2505 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2506 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2507 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2508 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2509 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2510 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2511 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2512 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2513 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2514 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2515 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2516 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2517 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2518 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2519 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2520 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2521 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2522 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2523 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2524 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2525 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2526 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2527 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2528 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2529 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2530 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2531 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2532 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2533 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2534 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2535 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2536 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2537 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2538 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2539 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2540 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2541 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2542 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2543 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2544 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2545 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2546 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2547 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2548 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2549 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2550 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2551 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2552 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2553 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2554 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2555 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2556 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2557 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2558 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2559 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2560 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2561 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2562 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2563 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2564 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2565 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2566 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2567 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2568 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2569 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2570 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2571 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2572 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2573 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2574 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2575 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2576 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2577 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2578 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2579 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2580 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2581 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2582 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2583 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2584 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2585 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2586 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2587 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2588 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2589 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2590 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2591 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2592 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2593 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2594 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2595 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2596 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2597 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2598 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2599 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2600 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2601 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2602 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2603 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2604 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2605 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2606 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2607 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2608 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2609 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2610 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2611 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2612 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2613 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2614 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2615 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2616 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2617 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2618 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2619 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2620 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2621 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2622 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2623 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2624 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2625 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2626 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2627 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2628 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2629 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2630 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2631 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2632 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2633 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2634 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2635 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2636 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2637 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2638 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2639 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2640 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2641 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2642 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2643 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2644 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2645 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2646 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2647 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2648 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2649 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2650 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2651 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2652 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2653 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2654 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2655 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2656 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2657 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2658 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2659 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2660 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2661 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2662 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2663 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2664 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2665 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2666 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2667 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2668 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2669 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2670 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2671 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2672 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2673 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2674 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2675 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2676 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2677 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2678 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2679 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2680 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2681 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2682 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2683 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2684 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2685 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2686 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2687 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2688 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2689 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2690 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2691 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2692 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2693 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2694 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2695 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2696 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2697 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2698 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2699 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2700 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2701 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2702 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2703 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2704 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2705 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2706 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2707 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2708 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2709 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2710 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2711 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2712 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2713 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2714 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2715 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2716 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2717 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2718 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2719 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2720 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2721 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2722 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2723 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2724 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2725 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2726 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2727 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2728 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2729 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2730 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 2731 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 2732 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2733 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2734 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2735 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2736 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2737 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2738 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2739 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2740 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2741 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2742 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2743 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2744 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 2745 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 2746 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2747 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2748 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2749 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2750 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2751 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2752 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2753 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2754 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2755 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2756 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2757 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2758 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2759 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2760 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2761 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2762 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2763 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2764 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2765 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2766 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2767 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2768 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2769 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2770 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2771 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2772 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2773 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2774 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2775 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2776 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2777 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2778 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2779 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2780 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2781 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2782 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2783 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2784 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2785 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2786 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2787 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2788 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2789 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2790 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2791 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2792 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2793 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2794 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2795 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2796 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2797 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2798 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2799 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2800 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2801 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2802 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2803 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2804 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2805 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2806 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2807 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2808 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2809 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2810 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2811 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2812 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2813 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2814 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2815 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2816 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2817 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2818 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2819 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2820 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2821 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2822 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2823 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2824 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2825 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2826 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2827 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2828 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2829 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2830 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2831 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2832 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2833 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2834 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2835 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2836 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2837 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2838 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2839 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2840 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2841 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2842 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2843 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2844 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2845 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2846 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2847 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2848 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2849 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2850 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2851 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2852 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2853 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2854 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2855 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2856 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2857 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2858 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2859 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2860 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2861 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2862 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2863 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2864 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2865 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2866 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2867 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2868 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2869 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2870 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2871 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2872 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2873 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2874 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2875 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2876 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2877 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2878 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2879 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2880 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2881 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2882 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2883 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2884 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2885 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2886 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2887 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2888 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2889 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2890 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2891 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2892 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2893 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2894 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2895 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2896 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2897 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2898 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2899 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2900 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2901 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2902 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2903 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2904 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2905 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2906 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2907 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2908 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2909 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2910 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2911 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2912 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2913 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2914 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2915 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2916 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2917 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2918 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2919 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2920 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2921 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2922 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2923 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2924 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2925 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2926 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2927 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2928 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2929 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2930 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2931 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2932 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2933 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2934 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2935 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2936 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2937 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2938 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2939 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2940 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2941 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2942 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2943 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2944 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2945 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2946 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2947 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2948 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2949 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2950 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2951 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2952 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2953 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2954 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2955 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2956 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2957 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2958 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2959 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2960 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2961 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2962 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2963 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2964 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2965 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2966 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2967 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2968 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2969 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2970 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2971 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2972 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2973 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2974 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2975 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2976 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2977 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2978 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2979 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2980 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2981 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2982 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2983 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2984 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2985 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2986 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2987 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 2988 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 2989 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 2990 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 2991 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 2992 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 2993 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 2994 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 2995 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 2996 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 2997 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 2998 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 2999 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3000 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3001 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3002 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3003 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3004 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3005 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3006 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3007 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3008 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3009 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3010 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3011 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3012 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3013 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3014 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3015 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3016 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3017 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3018 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3019 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3020 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3021 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3022 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3023 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3024 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3025 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3026 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3027 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3028 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3029 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3030 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3031 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3032 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3033 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3034 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3035 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3036 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3037 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3038 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3039 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3040 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3041 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3042 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3043 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3044 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3045 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3046 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3047 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3048 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3049 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3050 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3051 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3052 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3053 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3054 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3055 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3056 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3057 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3058 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3059 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3060 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3061 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3062 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3063 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3064 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3065 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3066 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3067 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3068 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3069 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3070 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3071 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3072 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3073 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3074 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3075 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3076 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3077 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3078 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3079 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3080 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3081 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3082 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3083 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3084 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3085 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3086 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3087 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3088 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3089 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3090 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3091 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3092 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3093 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3094 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3095 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3096 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3097 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3098 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3099 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3100 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3101 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3102 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3103 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3104 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3105 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3106 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3107 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3108 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3109 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3110 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3111 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3112 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3113 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3114 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3115 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3116 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3117 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3118 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3119 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3120 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3121 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3122 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3123 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3124 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3125 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3126 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3127 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3128 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3129 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3130 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3131 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3132 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3133 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3134 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3135 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3136 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3137 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3138 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3139 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3140 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3141 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3142 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3143 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3144 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3145 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3146 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3147 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3148 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3149 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3150 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3151 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3152 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3153 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3154 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3155 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3156 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3157 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3158 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3159 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3160 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3161 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3162 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3163 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3164 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3165 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3166 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3167 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3168 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3169 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3170 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3171 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3172 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3173 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3174 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3175 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3176 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3177 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3178 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3179 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3180 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3181 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3182 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3183 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3184 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3185 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3186 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3187 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3188 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3189 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3190 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3191 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3192 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3193 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3194 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3195 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3196 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3197 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3198 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3199 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3200 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3201 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3202 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3203 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3204 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3205 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3206 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3207 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3208 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3209 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3210 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3211 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3212 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3213 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3214 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3215 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3216 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3217 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3218 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3219 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3220 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3221 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3222 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3223 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3224 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3225 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3226 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3227 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3228 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3229 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3230 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3231 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3232 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3233 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3234 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3235 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3236 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3237 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3238 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3239 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3240 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3241 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3242 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3243 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3244 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3245 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3246 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3247 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3248 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3249 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3250 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3251 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3252 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3253 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3254 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3255 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3256 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3257 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3258 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3259 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3260 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3261 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3262 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3263 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3264 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3265 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3266 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3267 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3268 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3269 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3270 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3271 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3272 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3273 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3274 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3275 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3276 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3277 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3278 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3279 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3280 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3281 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3282 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3283 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3284 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3285 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3286 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3287 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3288 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3289 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3290 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3291 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3292 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3293 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3294 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3295 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3296 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3297 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3298 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3299 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3300 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3301 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3302 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3303 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3304 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3305 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3306 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3307 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3308 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3309 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3310 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3311 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3312 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3313 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3314 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3315 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3316 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3317 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3318 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3319 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3320 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3321 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3322 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3323 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3324 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3325 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3326 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3327 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3328 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3329 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3330 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3331 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3332 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3333 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3334 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3335 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3336 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3337 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3338 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3339 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3340 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3341 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3342 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3343 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3344 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3345 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3346 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3347 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3348 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3349 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3350 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3351 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3352 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3353 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3354 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3355 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3356 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3357 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3358 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3359 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3360 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3361 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3362 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3363 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3364 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3365 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3366 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3367 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3368 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3369 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3370 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3371 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3372 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3373 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3374 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3375 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3376 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3377 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3378 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3379 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3380 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3381 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3382 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3383 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3384 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3385 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3386 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3387 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3388 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3389 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3390 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3391 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3392 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3393 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3394 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3395 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3396 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3397 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3398 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3399 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3400 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3401 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3402 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3403 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3404 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3405 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3406 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3407 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3408 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3409 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3410 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3411 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3412 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3413 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3414 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3415 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3416 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3417 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3418 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3419 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3420 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3421 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3422 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3423 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3424 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3425 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3426 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3427 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3428 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3429 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3430 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3431 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3432 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3433 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3434 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3435 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3436 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3437 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3438 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3439 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3440 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3441 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3442 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3443 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3444 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3445 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3446 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3447 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3448 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3449 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3450 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3451 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3452 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3453 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3454 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3455 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3456 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3457 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3458 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3459 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3460 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3461 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3462 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3463 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3464 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3465 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3466 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3467 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3468 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3469 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3470 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3471 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3472 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3473 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3474 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3475 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3476 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3477 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3478 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3479 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3480 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3481 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3482 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3483 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3484 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3485 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3486 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3487 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3488 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3489 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3490 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3491 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3492 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3493 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3494 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3495 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3496 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3497 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3498 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3499 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3500 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3501 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3502 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3503 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3504 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3505 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3506 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3507 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3508 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3509 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3510 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3511 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3512 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3513 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3514 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3515 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3516 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3517 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3518 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3519 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3520 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3521 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3522 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3523 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3524 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3525 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3526 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3527 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3528 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3529 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3530 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3531 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3532 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3533 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3534 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3535 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3536 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3537 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3538 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3539 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3540 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3541 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3542 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3543 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3544 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3545 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3546 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3547 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3548 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3549 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3550 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3551 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3552 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3553 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3554 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3555 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3556 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3557 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3558 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3559 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3560 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3561 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3562 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3563 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3564 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3565 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3566 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3567 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3568 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3569 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3570 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3571 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3572 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3573 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3574 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3575 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3576 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3577 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3578 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3579 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3580 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3581 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3582 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3583 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3584 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3585 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3586 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3587 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3588 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3589 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3590 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3591 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3592 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3593 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3594 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3595 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3596 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3597 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3598 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3599 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3600 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3601 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3602 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3603 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3604 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3605 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3606 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3607 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3608 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3609 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3610 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3611 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3612 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3613 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3614 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 3615 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 3616 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3617 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3618 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3619 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3620 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3621 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3622 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3623 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3624 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3625 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3626 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3627 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3628 androidannotations-3.3.1 a1a3e7c232ae7bc6226f4f62080e003205a50e04
## 3629 androidannotations-3.3.2 197a8bf92d7e008d8406ad70cdf54f00eace6ce3
## 3630 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3631 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3632 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3633 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3634 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3635 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3636 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3637 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3638 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3639 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3640 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3641 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3642 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3643 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3644 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3645 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3646 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3647 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3648 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3649 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3650 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3651 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3652 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3653 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3654 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3655 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3656 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3657 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3658 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3659 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3660 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3661 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3662 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3663 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3664 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3665 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3666 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3667 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3668 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3669 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3670 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3671 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3672 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3673 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3674 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3675 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3676 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3677 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3678 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3679 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3680 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3681 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3682 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3683 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3684 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3685 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3686 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3687 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3688 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3689 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3690 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3691 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3692 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3693 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3694 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3695 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3696 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3697 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3698 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3699 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3700 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3701 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3702 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3703 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3704 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3705 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3706 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3707 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3708 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3709 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3710 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3711 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3712 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3713 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3714 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3715 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3716 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3717 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3718 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3719 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3720 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3721 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3722 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3723 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3724 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3725 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3726 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3727 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3728 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3729 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3730 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3731 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3732 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3733 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3734 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3735 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3736 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3737 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3738 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3739 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3740 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3741 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3742 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3743 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3744 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3745 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3746 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3747 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3748 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3749 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3750 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3751 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3752 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3753 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3754 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3755 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3756 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3757 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3758 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3759 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3760 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3761 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3762 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3763 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3764 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3765 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3766 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3767 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3768 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3769 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3770 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3771 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3772 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3773 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3774 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3775 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3776 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3777 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3778 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3779 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3780 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3781 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3782 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3783 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3784 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3785 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3786 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3787 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3788 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3789 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3790 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3791 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3792 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3793 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3794 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3795 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3796 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3797 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3798 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3799 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3800 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3801 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3802 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3803 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3804 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3805 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3806 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3807 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3808 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3809 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3810 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3811 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3812 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3813 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3814 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3815 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3816 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3817 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3818 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3819 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3820 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3821 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3822 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3823 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3824 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3825 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3826 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3827 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3828 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3829 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3830 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3831 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3832 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3833 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3834 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## 3835 androidannotations-4.1.0 574e7869ea9b6e743f57cbcb3970f2c77a01e206
## 3836 androidannotations-4.2.0 357912f8cbc8528892323753c75c1c92ee214408
## 3837 androidannotations-4.3.0 7af3ead70430eeb22d69c7c62d92df205dcb1ea3
## 3838 androidannotations-4.3.1 1847f7083f0ce29747f12a496af9c0dffef183ea
## 3839 androidannotations-4.4.0 07daa98de58fa6fc2916f7fb1b24ddbc326793b2
## 3840 androidannotations-4.5.0 405528724773e273693d9e9ccaa4dacb9e8ab687
## 3841 androidannotations-4.5.1 69be7e0b716b8ef1dc4f53edd77bec785ec0ef70
## 3842 androidannotations-4.5.2 22e7acb20efaea4ba2e9ae6ab41df873f7f2ea6e
## 3843 androidannotations-4.6.0 12c774d23951223b39adf92698ee7780394104c8
## 3844 androidannotations-4.7.0 b2a100d232d70e90d702fc4408b435b09fdeafe9
## 3845 androidannotations-4.8.0 66d82fc8a4a81cf5e6a2dc7d500cdd1662258c4d
## 3846 androidannotations-4.0.0 19a6f68a2af2f918c020828a2f2acf356129c5cd
## Date.y
## 1 Sat Nov 26 18:34:10 CET 2011
## 2 Thu Dec 08 12:44:13 CET 2011
## 3 Sat Nov 26 18:34:10 CET 2011
## 4 Thu Dec 08 12:44:13 CET 2011
## 5 Sat Nov 26 18:34:10 CET 2011
## 6 Thu Dec 08 12:44:13 CET 2011
## 7 Sat Nov 26 18:34:10 CET 2011
## 8 Thu Dec 08 12:44:13 CET 2011
## 9 Sat Nov 26 18:34:10 CET 2011
## 10 Thu Dec 08 12:44:13 CET 2011
## 11 Sat Nov 26 18:34:10 CET 2011
## 12 Thu Dec 08 12:44:13 CET 2011
## 13 Sat Nov 26 18:34:10 CET 2011
## 14 Thu Dec 08 12:44:13 CET 2011
## 15 Sat Nov 26 18:34:10 CET 2011
## 16 Thu Dec 08 12:44:13 CET 2011
## 17 Sat Nov 26 18:34:10 CET 2011
## 18 Thu Dec 08 12:44:13 CET 2011
## 19 Sat Nov 26 18:34:10 CET 2011
## 20 Thu Dec 08 12:44:13 CET 2011
## 21 Sat Nov 26 18:34:10 CET 2011
## 22 Thu Dec 08 12:44:13 CET 2011
## 23 Thu Dec 08 12:44:13 CET 2011
## 24 Thu Dec 08 12:44:13 CET 2011
## 25 Thu Dec 08 12:44:13 CET 2011
## 26 Thu Dec 08 12:44:13 CET 2011
## 27 Thu Dec 08 12:44:13 CET 2011
## 28 Sat Nov 26 18:34:10 CET 2011
## 29 Thu Dec 08 12:44:13 CET 2011
## 30 Sat Nov 26 18:34:10 CET 2011
## 31 Thu Dec 08 12:44:13 CET 2011
## 32 Sat Nov 26 18:34:10 CET 2011
## 33 Thu Dec 08 12:44:13 CET 2011
## 34 Sat Nov 26 18:34:10 CET 2011
## 35 Thu Dec 08 12:44:13 CET 2011
## 36 Sat Nov 26 18:34:10 CET 2011
## 37 Thu Dec 08 12:44:13 CET 2011
## 38 Sat Nov 26 18:34:10 CET 2011
## 39 Thu Dec 08 12:44:13 CET 2011
## 40 Sat Nov 26 18:34:10 CET 2011
## 41 Thu Dec 08 12:44:13 CET 2011
## 42 Sat Nov 26 18:34:10 CET 2011
## 43 Thu Dec 08 12:44:13 CET 2011
## 44 Sat Nov 26 18:34:10 CET 2011
## 45 Thu Dec 08 12:44:13 CET 2011
## 46 Sat Nov 26 18:34:10 CET 2011
## 47 Thu Dec 08 12:44:13 CET 2011
## 48 Sat Nov 26 18:34:10 CET 2011
## 49 Thu Dec 08 12:44:13 CET 2011
## 50 Sat Nov 26 18:34:10 CET 2011
## 51 Thu Dec 08 12:44:13 CET 2011
## 52 Sat Nov 26 18:34:10 CET 2011
## 53 Thu Dec 08 12:44:13 CET 2011
## 54 Sat Nov 26 18:34:10 CET 2011
## 55 Thu Dec 08 12:44:13 CET 2011
## 56 Sat Nov 26 18:34:10 CET 2011
## 57 Thu Dec 08 12:44:13 CET 2011
## 58 Sat Nov 26 18:34:10 CET 2011
## 59 Thu Dec 08 12:44:13 CET 2011
## 60 Sat Nov 26 18:34:10 CET 2011
## 61 Thu Dec 08 12:44:13 CET 2011
## 62 Sat Nov 26 18:34:10 CET 2011
## 63 Thu Dec 08 12:44:13 CET 2011
## 64 Sat Nov 26 18:34:10 CET 2011
## 65 Thu Dec 08 12:44:13 CET 2011
## 66 Sat Nov 26 18:34:10 CET 2011
## 67 Thu Dec 08 12:44:13 CET 2011
## 68 Sat Nov 26 18:34:10 CET 2011
## 69 Thu Dec 08 12:44:13 CET 2011
## 70 Sat Nov 26 18:34:10 CET 2011
## 71 Thu Dec 08 12:44:13 CET 2011
## 72 Thu Dec 08 12:44:13 CET 2011
## 73 Thu Dec 08 12:44:13 CET 2011
## 74 Thu Dec 08 12:44:13 CET 2011
## 75 Thu Dec 08 12:44:13 CET 2011
## 76 Thu Dec 08 12:44:13 CET 2011
## 77 Sat Nov 26 18:34:10 CET 2011
## 78 Thu Dec 08 12:44:13 CET 2011
## 79 Sat Nov 26 18:34:10 CET 2011
## 80 Thu Dec 08 12:44:13 CET 2011
## 81 Sat Nov 26 18:34:10 CET 2011
## 82 Thu Dec 08 12:44:13 CET 2011
## 83 Sat Nov 26 18:34:10 CET 2011
## 84 Thu Dec 08 12:44:13 CET 2011
## 85 Sat Nov 26 18:34:10 CET 2011
## 86 Thu Dec 08 12:44:13 CET 2011
## 87 Sat Nov 26 18:34:10 CET 2011
## 88 Thu Dec 08 12:44:13 CET 2011
## 89 Sat Nov 26 18:34:10 CET 2011
## 90 Thu Dec 08 12:44:13 CET 2011
## 91 Sat Nov 26 18:34:10 CET 2011
## 92 Thu Dec 08 12:44:13 CET 2011
## 93 Sat Nov 26 18:34:10 CET 2011
## 94 Thu Dec 08 12:44:13 CET 2011
## 95 Sat Nov 26 18:34:10 CET 2011
## 96 Thu Dec 08 12:44:13 CET 2011
## 97 Sat Nov 26 18:34:10 CET 2011
## 98 Thu Dec 08 12:44:13 CET 2011
## 99 Sat Nov 26 18:34:10 CET 2011
## 100 Thu Dec 08 12:44:13 CET 2011
## 101 Sat Nov 26 18:34:10 CET 2011
## 102 Thu Dec 08 12:44:13 CET 2011
## 103 Sat Nov 26 18:34:10 CET 2011
## 104 Thu Dec 08 12:44:13 CET 2011
## 105 Sat Nov 26 18:34:10 CET 2011
## 106 Thu Dec 08 12:44:13 CET 2011
## 107 Sat Nov 26 18:34:10 CET 2011
## 108 Thu Dec 08 12:44:13 CET 2011
## 109 Sat Nov 26 18:34:10 CET 2011
## 110 Thu Dec 08 12:44:13 CET 2011
## 111 Sat Nov 26 18:34:10 CET 2011
## 112 Thu Dec 08 12:44:13 CET 2011
## 113 Sat Nov 26 18:34:10 CET 2011
## 114 Thu Dec 08 12:44:13 CET 2011
## 115 Sat Nov 26 18:34:10 CET 2011
## 116 Thu Dec 08 12:44:13 CET 2011
## 117 Sat Nov 26 18:34:10 CET 2011
## 118 Thu Dec 08 12:44:13 CET 2011
## 119 Sat Nov 26 18:34:10 CET 2011
## 120 Thu Dec 08 12:44:13 CET 2011
## 121 Thu Dec 08 12:44:13 CET 2011
## 122 Thu Dec 08 12:44:13 CET 2011
## 123 Thu Dec 08 12:44:13 CET 2011
## 124 Thu Dec 08 12:44:13 CET 2011
## 125 Thu Dec 08 12:44:13 CET 2011
## 126 Sat Nov 26 18:34:10 CET 2011
## 127 Thu Dec 08 12:44:13 CET 2011
## 128 Sat Nov 26 18:34:10 CET 2011
## 129 Thu Dec 08 12:44:13 CET 2011
## 130 Sat Nov 26 18:34:10 CET 2011
## 131 Thu Dec 08 12:44:13 CET 2011
## 132 Sat Nov 26 18:34:10 CET 2011
## 133 Thu Dec 08 12:44:13 CET 2011
## 134 Sat Nov 26 18:34:10 CET 2011
## 135 Thu Dec 08 12:44:13 CET 2011
## 136 Sat Nov 26 18:34:10 CET 2011
## 137 Thu Dec 08 12:44:13 CET 2011
## 138 Sat Nov 26 18:34:10 CET 2011
## 139 Thu Dec 08 12:44:13 CET 2011
## 140 Sat Nov 26 18:34:10 CET 2011
## 141 Thu Dec 08 12:44:13 CET 2011
## 142 Sat Nov 26 18:34:10 CET 2011
## 143 Thu Dec 08 12:44:13 CET 2011
## 144 Sat Nov 26 18:34:10 CET 2011
## 145 Thu Dec 08 12:44:13 CET 2011
## 146 Sat Nov 26 18:34:10 CET 2011
## 147 Thu Dec 08 12:44:13 CET 2011
## 148 Sat Nov 26 18:34:10 CET 2011
## 149 Thu Dec 08 12:44:13 CET 2011
## 150 Sat Nov 26 18:34:10 CET 2011
## 151 Thu Dec 08 12:44:13 CET 2011
## 152 Sat Nov 26 18:34:10 CET 2011
## 153 Thu Dec 08 12:44:13 CET 2011
## 154 Sat Nov 26 18:34:10 CET 2011
## 155 Thu Dec 08 12:44:13 CET 2011
## 156 Sat Nov 26 18:34:10 CET 2011
## 157 Thu Dec 08 12:44:13 CET 2011
## 158 Sat Nov 26 18:34:10 CET 2011
## 159 Thu Dec 08 12:44:13 CET 2011
## 160 Sat Nov 26 18:34:10 CET 2011
## 161 Thu Dec 08 12:44:13 CET 2011
## 162 Sat Nov 26 18:34:10 CET 2011
## 163 Thu Dec 08 12:44:13 CET 2011
## 164 Sat Nov 26 18:34:10 CET 2011
## 165 Thu Dec 08 12:44:13 CET 2011
## 166 Sat Nov 26 18:34:10 CET 2011
## 167 Thu Dec 08 12:44:13 CET 2011
## 168 Sat Nov 26 18:34:10 CET 2011
## 169 Thu Dec 08 12:44:13 CET 2011
## 170 Sat Nov 26 18:34:10 CET 2011
## 171 Thu Dec 08 12:44:13 CET 2011
## 172 Sat Nov 26 18:34:10 CET 2011
## 173 Thu Dec 08 12:44:13 CET 2011
## 174 Sat Nov 26 18:34:10 CET 2011
## 175 Thu Dec 08 12:44:13 CET 2011
## 176 Sat Nov 26 18:34:10 CET 2011
## 177 Thu Dec 08 12:44:13 CET 2011
## 178 Sat Nov 26 18:34:10 CET 2011
## 179 Thu Dec 08 12:44:13 CET 2011
## 180 Sat Nov 26 18:34:10 CET 2011
## 181 Thu Dec 08 12:44:13 CET 2011
## 182 Sat Nov 26 18:34:10 CET 2011
## 183 Thu Dec 08 12:44:13 CET 2011
## 184 Sat Nov 26 18:34:10 CET 2011
## 185 Thu Dec 08 12:44:13 CET 2011
## 186 Sat Nov 26 18:34:10 CET 2011
## 187 Thu Dec 08 12:44:13 CET 2011
## 188 Sat Nov 26 18:34:10 CET 2011
## 189 Thu Dec 08 12:44:13 CET 2011
## 190 Sat Nov 26 18:34:10 CET 2011
## 191 Thu Dec 08 12:44:13 CET 2011
## 192 Sat Nov 26 18:34:10 CET 2011
## 193 Thu Dec 08 12:44:13 CET 2011
## 194 Sat Nov 26 18:34:10 CET 2011
## 195 Thu Dec 08 12:44:13 CET 2011
## 196 Sat Nov 26 18:34:10 CET 2011
## 197 Thu Dec 08 12:44:13 CET 2011
## 198 Sat Nov 26 18:34:10 CET 2011
## 199 Thu Dec 08 12:44:13 CET 2011
## 200 Sat Nov 26 18:34:10 CET 2011
## 201 Thu Dec 08 12:44:13 CET 2011
## 202 Sat Nov 26 18:34:10 CET 2011
## 203 Thu Dec 08 12:44:13 CET 2011
## 204 Sat Nov 26 18:34:10 CET 2011
## 205 Thu Dec 08 12:44:13 CET 2011
## 206 Sat Nov 26 18:34:10 CET 2011
## 207 Thu Dec 08 12:44:13 CET 2011
## 208 Sat Nov 26 18:34:10 CET 2011
## 209 Thu Dec 08 12:44:13 CET 2011
## 210 Sat Nov 26 18:34:10 CET 2011
## 211 Thu Dec 08 12:44:13 CET 2011
## 212 Sat Nov 26 18:34:10 CET 2011
## 213 Thu Dec 08 12:44:13 CET 2011
## 214 Sat Nov 26 18:34:10 CET 2011
## 215 Thu Dec 08 12:44:13 CET 2011
## 216 Sat Nov 26 18:34:10 CET 2011
## 217 Thu Dec 08 12:44:13 CET 2011
## 218 Sat Nov 26 18:34:10 CET 2011
## 219 Thu Dec 08 12:44:13 CET 2011
## 220 Sat Nov 26 18:34:10 CET 2011
## 221 Thu Dec 08 12:44:13 CET 2011
## 222 Sat Nov 26 18:34:10 CET 2011
## 223 Thu Dec 08 12:44:13 CET 2011
## 224 Sat Nov 26 18:34:10 CET 2011
## 225 Thu Dec 08 12:44:13 CET 2011
## 226 Sat Nov 26 18:34:10 CET 2011
## 227 Thu Dec 08 12:44:13 CET 2011
## 228 Sat Nov 26 18:34:10 CET 2011
## 229 Thu Dec 08 12:44:13 CET 2011
## 230 Sat Nov 26 18:34:10 CET 2011
## 231 Thu Dec 08 12:44:13 CET 2011
## 232 Sat Nov 26 18:34:10 CET 2011
## 233 Thu Dec 08 12:44:13 CET 2011
## 234 Sat Nov 26 18:34:10 CET 2011
## 235 Thu Dec 08 12:44:13 CET 2011
## 236 Sat Nov 26 18:34:10 CET 2011
## 237 Thu Dec 08 12:44:13 CET 2011
## 238 Sat Nov 26 18:34:10 CET 2011
## 239 Thu Dec 08 12:44:13 CET 2011
## 240 Sat Nov 26 18:34:10 CET 2011
## 241 Thu Dec 08 12:44:13 CET 2011
## 242 Sat Nov 26 18:34:10 CET 2011
## 243 Thu Dec 08 12:44:13 CET 2011
## 244 Sat Nov 26 18:34:10 CET 2011
## 245 Thu Dec 08 12:44:13 CET 2011
## 246 Sat Nov 26 18:34:10 CET 2011
## 247 Thu Dec 08 12:44:13 CET 2011
## 248 Sat Nov 26 18:34:10 CET 2011
## 249 Thu Dec 08 12:44:13 CET 2011
## 250 Sat Nov 26 18:34:10 CET 2011
## 251 Thu Dec 08 12:44:13 CET 2011
## 252 Sat Nov 26 18:34:10 CET 2011
## 253 Thu Dec 08 12:44:13 CET 2011
## 254 Thu Dec 08 12:44:13 CET 2011
## 255 Thu Dec 08 12:44:13 CET 2011
## 256 Thu Dec 08 12:44:13 CET 2011
## 257 Thu Dec 08 12:44:13 CET 2011
## 258 Thu Dec 08 12:44:13 CET 2011
## 259 Sat Nov 26 18:34:10 CET 2011
## 260 Thu Dec 08 12:44:13 CET 2011
## 261 Sat Nov 26 18:34:10 CET 2011
## 262 Thu Dec 08 12:44:13 CET 2011
## 263 Sat Nov 26 18:34:10 CET 2011
## 264 Thu Dec 08 12:44:13 CET 2011
## 265 Sat Nov 26 18:34:10 CET 2011
## 266 Thu Dec 08 12:44:13 CET 2011
## 267 Sat Nov 26 18:34:10 CET 2011
## 268 Thu Dec 08 12:44:13 CET 2011
## 269 Sat Nov 26 18:34:10 CET 2011
## 270 Thu Dec 08 12:44:13 CET 2011
## 271 Sat Nov 26 18:34:10 CET 2011
## 272 Thu Dec 08 12:44:13 CET 2011
## 273 Sat Nov 26 18:34:10 CET 2011
## 274 Thu Dec 08 12:44:13 CET 2011
## 275 Sat Nov 26 18:34:10 CET 2011
## 276 Thu Dec 08 12:44:13 CET 2011
## 277 Sat Nov 26 18:34:10 CET 2011
## 278 Thu Dec 08 12:44:13 CET 2011
## 279 Sat Nov 26 18:34:10 CET 2011
## 280 Thu Dec 08 12:44:13 CET 2011
## 281 Sat Nov 26 18:34:10 CET 2011
## 282 Thu Dec 08 12:44:13 CET 2011
## 283 Sat Nov 26 18:34:10 CET 2011
## 284 Thu Dec 08 12:44:13 CET 2011
## 285 Sat Nov 26 18:34:10 CET 2011
## 286 Thu Dec 08 12:44:13 CET 2011
## 287 Sat Nov 26 18:34:10 CET 2011
## 288 Thu Dec 08 12:44:13 CET 2011
## 289 Sat Nov 26 18:34:10 CET 2011
## 290 Thu Dec 08 12:44:13 CET 2011
## 291 Sat Nov 26 18:34:10 CET 2011
## 292 Thu Dec 08 12:44:13 CET 2011
## 293 Sat Nov 26 18:34:10 CET 2011
## 294 Thu Dec 08 12:44:13 CET 2011
## 295 Sat Nov 26 18:34:10 CET 2011
## 296 Thu Dec 08 12:44:13 CET 2011
## 297 Sat Nov 26 18:34:10 CET 2011
## 298 Thu Dec 08 12:44:13 CET 2011
## 299 Sat Nov 26 18:34:10 CET 2011
## 300 Thu Dec 08 12:44:13 CET 2011
## 301 Sat Nov 26 18:34:10 CET 2011
## 302 Thu Dec 08 12:44:13 CET 2011
## 303 Sat Nov 26 18:34:10 CET 2011
## 304 Thu Dec 08 12:44:13 CET 2011
## 305 Sat Nov 26 18:34:10 CET 2011
## 306 Thu Dec 08 12:44:13 CET 2011
## 307 Sat Nov 26 18:34:10 CET 2011
## 308 Thu Dec 08 12:44:13 CET 2011
## 309 Sat Nov 26 18:34:10 CET 2011
## 310 Thu Dec 08 12:44:13 CET 2011
## 311 Sat Nov 26 18:34:10 CET 2011
## 312 Thu Dec 08 12:44:13 CET 2011
## 313 Sat Nov 26 18:34:10 CET 2011
## 314 Thu Dec 08 12:44:13 CET 2011
## 315 Sat Nov 26 18:34:10 CET 2011
## 316 Thu Dec 08 12:44:13 CET 2011
## 317 Sat Nov 26 18:34:10 CET 2011
## 318 Thu Dec 08 12:44:13 CET 2011
## 319 Sat Nov 26 18:34:10 CET 2011
## 320 Thu Dec 08 12:44:13 CET 2011
## 321 Sat Nov 26 18:34:10 CET 2011
## 322 Thu Dec 08 12:44:13 CET 2011
## 323 Sat Nov 26 18:34:10 CET 2011
## 324 Thu Dec 08 12:44:13 CET 2011
## 325 Sat Nov 26 18:34:10 CET 2011
## 326 Thu Dec 08 12:44:13 CET 2011
## 327 Sat Nov 26 18:34:10 CET 2011
## 328 Thu Dec 08 12:44:13 CET 2011
## 329 Sat Nov 26 18:34:10 CET 2011
## 330 Thu Dec 08 12:44:13 CET 2011
## 331 Sat Nov 26 18:34:10 CET 2011
## 332 Thu Dec 08 12:44:13 CET 2011
## 333 Sat Nov 26 18:34:10 CET 2011
## 334 Thu Dec 08 12:44:13 CET 2011
## 335 Sat Nov 26 18:34:10 CET 2011
## 336 Thu Dec 08 12:44:13 CET 2011
## 337 Sat Nov 26 18:34:10 CET 2011
## 338 Thu Dec 08 12:44:13 CET 2011
## 339 Sat Nov 26 18:34:10 CET 2011
## 340 Thu Dec 08 12:44:13 CET 2011
## 341 Sat Nov 26 18:34:10 CET 2011
## 342 Thu Dec 08 12:44:13 CET 2011
## 343 Sat Nov 26 18:34:10 CET 2011
## 344 Thu Dec 08 12:44:13 CET 2011
## 345 Sat Nov 26 18:34:10 CET 2011
## 346 Thu Dec 08 12:44:13 CET 2011
## 347 Thu Dec 08 12:44:13 CET 2011
## 348 Thu Dec 08 12:44:13 CET 2011
## 349 Thu Dec 08 12:44:13 CET 2011
## 350 Thu Dec 08 12:44:13 CET 2011
## 351 Thu Dec 08 12:44:13 CET 2011
## 352 Sat Nov 26 18:34:10 CET 2011
## 353 Thu Dec 08 12:44:13 CET 2011
## 354 Sat Nov 26 18:34:10 CET 2011
## 355 Thu Dec 08 12:44:13 CET 2011
## 356 Sat Nov 26 18:34:10 CET 2011
## 357 Thu Dec 08 12:44:13 CET 2011
## 358 Sat Nov 26 18:34:10 CET 2011
## 359 Thu Dec 08 12:44:13 CET 2011
## 360 Sat Nov 26 18:34:10 CET 2011
## 361 Thu Dec 08 12:44:13 CET 2011
## 362 Sat Nov 26 18:34:10 CET 2011
## 363 Thu Dec 08 12:44:13 CET 2011
## 364 Sat Nov 26 18:34:10 CET 2011
## 365 Thu Dec 08 12:44:13 CET 2011
## 366 Sat Nov 26 18:34:10 CET 2011
## 367 Thu Dec 08 12:44:13 CET 2011
## 368 Sat Nov 26 18:34:10 CET 2011
## 369 Thu Dec 08 12:44:13 CET 2011
## 370 Sat Nov 26 18:34:10 CET 2011
## 371 Thu Dec 08 12:44:13 CET 2011
## 372 Sat Nov 26 18:34:10 CET 2011
## 373 Thu Dec 08 12:44:13 CET 2011
## 374 Sat Nov 26 18:34:10 CET 2011
## 375 Thu Dec 08 12:44:13 CET 2011
## 376 Sat Nov 26 18:34:10 CET 2011
## 377 Thu Dec 08 12:44:13 CET 2011
## 378 Sat Nov 26 18:34:10 CET 2011
## 379 Thu Dec 08 12:44:13 CET 2011
## 380 Sat Nov 26 18:34:10 CET 2011
## 381 Thu Dec 08 12:44:13 CET 2011
## 382 Sat Nov 26 18:34:10 CET 2011
## 383 Thu Dec 08 12:44:13 CET 2011
## 384 Sat Nov 26 18:34:10 CET 2011
## 385 Thu Dec 08 12:44:13 CET 2011
## 386 Sat Nov 26 18:34:10 CET 2011
## 387 Thu Dec 08 12:44:13 CET 2011
## 388 Sat Nov 26 18:34:10 CET 2011
## 389 Thu Dec 08 12:44:13 CET 2011
## 390 Sat Nov 26 18:34:10 CET 2011
## 391 Thu Dec 08 12:44:13 CET 2011
## 392 Sat Nov 26 18:34:10 CET 2011
## 393 Thu Dec 08 12:44:13 CET 2011
## 394 Thu Dec 08 12:44:13 CET 2011
## 395 Thu Dec 08 12:44:13 CET 2011
## 396 Thu Dec 08 12:44:13 CET 2011
## 397 Thu Dec 08 12:44:13 CET 2011
## 398 Thu Dec 08 12:44:13 CET 2011
## 399 Sat Nov 26 18:34:10 CET 2011
## 400 Thu Dec 08 12:44:13 CET 2011
## 401 Sat Nov 26 18:34:10 CET 2011
## 402 Thu Dec 08 12:44:13 CET 2011
## 403 Sat Nov 26 18:34:10 CET 2011
## 404 Thu Dec 08 12:44:13 CET 2011
## 405 Sat Nov 26 18:34:10 CET 2011
## 406 Thu Dec 08 12:44:13 CET 2011
## 407 Sat Nov 26 18:34:10 CET 2011
## 408 Thu Dec 08 12:44:13 CET 2011
## 409 Sat Nov 26 18:34:10 CET 2011
## 410 Thu Dec 08 12:44:13 CET 2011
## 411 Sat Nov 26 18:34:10 CET 2011
## 412 Thu Dec 08 12:44:13 CET 2011
## 413 Sat Nov 26 18:34:10 CET 2011
## 414 Thu Dec 08 12:44:13 CET 2011
## 415 Sat Nov 26 18:34:10 CET 2011
## 416 Thu Dec 08 12:44:13 CET 2011
## 417 Sat Nov 26 18:34:10 CET 2011
## 418 Thu Dec 08 12:44:13 CET 2011
## 419 Sat Nov 26 18:34:10 CET 2011
## 420 Thu Dec 08 12:44:13 CET 2011
## 421 Sat Nov 26 18:34:10 CET 2011
## 422 Thu Dec 08 12:44:13 CET 2011
## 423 Sat Nov 26 18:34:10 CET 2011
## 424 Thu Dec 08 12:44:13 CET 2011
## 425 Sat Nov 26 18:34:10 CET 2011
## 426 Thu Dec 08 12:44:13 CET 2011
## 427 Sat Nov 26 18:34:10 CET 2011
## 428 Thu Dec 08 12:44:13 CET 2011
## 429 Sat Nov 26 18:34:10 CET 2011
## 430 Thu Dec 08 12:44:13 CET 2011
## 431 Sat Nov 26 18:34:10 CET 2011
## 432 Thu Dec 08 12:44:13 CET 2011
## 433 Sat Nov 26 18:34:10 CET 2011
## 434 Thu Dec 08 12:44:13 CET 2011
## 435 Sat Nov 26 18:34:10 CET 2011
## 436 Thu Dec 08 12:44:13 CET 2011
## 437 Sat Nov 26 18:34:10 CET 2011
## 438 Thu Dec 08 12:44:13 CET 2011
## 439 Sat Nov 26 18:34:10 CET 2011
## 440 Thu Dec 08 12:44:13 CET 2011
## 441 Thu Dec 08 12:44:13 CET 2011
## 442 Thu Dec 08 12:44:13 CET 2011
## 443 Thu Dec 08 12:44:13 CET 2011
## 444 Thu Dec 08 12:44:13 CET 2011
## 445 Thu Dec 08 12:44:13 CET 2011
## 446 Sat Nov 26 18:34:10 CET 2011
## 447 Thu Dec 08 12:44:13 CET 2011
## 448 Sat Nov 26 18:34:10 CET 2011
## 449 Thu Dec 08 12:44:13 CET 2011
## 450 Sat Nov 26 18:34:10 CET 2011
## 451 Thu Dec 08 12:44:13 CET 2011
## 452 Sat Nov 26 18:34:10 CET 2011
## 453 Thu Dec 08 12:44:13 CET 2011
## 454 Sat Nov 26 18:34:10 CET 2011
## 455 Thu Dec 08 12:44:13 CET 2011
## 456 Sat Nov 26 18:34:10 CET 2011
## 457 Thu Dec 08 12:44:13 CET 2011
## 458 Sat Nov 26 18:34:10 CET 2011
## 459 Thu Dec 08 12:44:13 CET 2011
## 460 Sat Nov 26 18:34:10 CET 2011
## 461 Thu Dec 08 12:44:13 CET 2011
## 462 Sat Nov 26 18:34:10 CET 2011
## 463 Thu Dec 08 12:44:13 CET 2011
## 464 Sat Nov 26 18:34:10 CET 2011
## 465 Thu Dec 08 12:44:13 CET 2011
## 466 Sat Nov 26 18:34:10 CET 2011
## 467 Thu Dec 08 12:44:13 CET 2011
## 468 Sat May 09 12:08:19 CEST 2015
## 469 Fri Jul 10 00:25:11 CEST 2015
## 470 Sat May 09 12:08:19 CEST 2015
## 471 Fri Jul 10 00:25:11 CEST 2015
## 472 Sat May 09 12:08:19 CEST 2015
## 473 Fri Jul 10 00:25:11 CEST 2015
## 474 Sat May 09 12:08:19 CEST 2015
## 475 Fri Jul 10 00:25:11 CEST 2015
## 476 Sat May 09 12:08:19 CEST 2015
## 477 Fri Jul 10 00:25:11 CEST 2015
## 478 Sat May 09 12:08:19 CEST 2015
## 479 Fri Jul 10 00:25:11 CEST 2015
## 480 Sat May 09 12:08:19 CEST 2015
## 481 Fri Jul 10 00:25:11 CEST 2015
## 482 Sat May 09 12:08:19 CEST 2015
## 483 Fri Jul 10 00:25:11 CEST 2015
## 484 Sat May 09 12:08:19 CEST 2015
## 485 Fri Jul 10 00:25:11 CEST 2015
## 486 Sat May 09 12:08:19 CEST 2015
## 487 Fri Jul 10 00:25:11 CEST 2015
## 488 Sat May 09 12:08:19 CEST 2015
## 489 Fri Jul 10 00:25:11 CEST 2015
## 490 Sat May 09 12:08:19 CEST 2015
## 491 Fri Jul 10 00:25:11 CEST 2015
## 492 Sat May 09 12:08:19 CEST 2015
## 493 Fri Jul 10 00:25:11 CEST 2015
## 494 Sat May 09 12:08:19 CEST 2015
## 495 Fri Jul 10 00:25:11 CEST 2015
## 496 Sat May 09 12:08:19 CEST 2015
## 497 Fri Jul 10 00:25:11 CEST 2015
## 498 Sat May 09 12:08:19 CEST 2015
## 499 Fri Jul 10 00:25:11 CEST 2015
## 500 Sat May 09 12:08:19 CEST 2015
## 501 Fri Jul 10 00:25:11 CEST 2015
## 502 Sat May 09 12:08:19 CEST 2015
## 503 Fri Jul 10 00:25:11 CEST 2015
## 504 Sat May 09 12:08:19 CEST 2015
## 505 Fri Jul 10 00:25:11 CEST 2015
## 506 Sat May 09 12:08:19 CEST 2015
## 507 Fri Jul 10 00:25:11 CEST 2015
## 508 Sat May 09 12:08:19 CEST 2015
## 509 Fri Jul 10 00:25:11 CEST 2015
## 510 Sat May 09 12:08:19 CEST 2015
## 511 Fri Jul 10 00:25:11 CEST 2015
## 512 Sat May 09 12:08:19 CEST 2015
## 513 Fri Jul 10 00:25:11 CEST 2015
## 514 Sat May 09 12:08:19 CEST 2015
## 515 Fri Jul 10 00:25:11 CEST 2015
## 516 Sat May 09 12:08:19 CEST 2015
## 517 Fri Jul 10 00:25:11 CEST 2015
## 518 Sat May 09 12:08:19 CEST 2015
## 519 Fri Jul 10 00:25:11 CEST 2015
## 520 Sat May 09 12:08:19 CEST 2015
## 521 Fri Jul 10 00:25:11 CEST 2015
## 522 Sat May 09 12:08:19 CEST 2015
## 523 Fri Jul 10 00:25:11 CEST 2015
## 524 Sat May 09 12:08:19 CEST 2015
## 525 Fri Jul 10 00:25:11 CEST 2015
## 526 Sat May 09 12:08:19 CEST 2015
## 527 Fri Jul 10 00:25:11 CEST 2015
## 528 Sat May 09 12:08:19 CEST 2015
## 529 Fri Jul 10 00:25:11 CEST 2015
## 530 Sat May 09 12:08:19 CEST 2015
## 531 Fri Jul 10 00:25:11 CEST 2015
## 532 Sat May 09 12:08:19 CEST 2015
## 533 Fri Jul 10 00:25:11 CEST 2015
## 534 Sat May 09 12:08:19 CEST 2015
## 535 Fri Jul 10 00:25:11 CEST 2015
## 536 Sat May 09 12:08:19 CEST 2015
## 537 Fri Jul 10 00:25:11 CEST 2015
## 538 Sat May 09 12:08:19 CEST 2015
## 539 Fri Jul 10 00:25:11 CEST 2015
## 540 Sat May 09 12:08:19 CEST 2015
## 541 Fri Jul 10 00:25:11 CEST 2015
## 542 Sat May 09 12:08:19 CEST 2015
## 543 Fri Jul 10 00:25:11 CEST 2015
## 544 Sat May 09 12:08:19 CEST 2015
## 545 Fri Jul 10 00:25:11 CEST 2015
## 546 Sat May 09 12:08:19 CEST 2015
## 547 Fri Jul 10 00:25:11 CEST 2015
## 548 Sat May 09 12:08:19 CEST 2015
## 549 Fri Jul 10 00:25:11 CEST 2015
## 550 Sat May 09 12:08:19 CEST 2015
## 551 Fri Jul 10 00:25:11 CEST 2015
## 552 Sat May 09 12:08:19 CEST 2015
## 553 Fri Jul 10 00:25:11 CEST 2015
## 554 Sat May 09 12:08:19 CEST 2015
## 555 Fri Jul 10 00:25:11 CEST 2015
## 556 Sat May 09 12:08:19 CEST 2015
## 557 Fri Jul 10 00:25:11 CEST 2015
## 558 Sat May 09 12:08:19 CEST 2015
## 559 Fri Jul 10 00:25:11 CEST 2015
## 560 Sat May 09 12:08:19 CEST 2015
## 561 Fri Jul 10 00:25:11 CEST 2015
## 562 Sat May 09 12:08:19 CEST 2015
## 563 Fri Jul 10 00:25:11 CEST 2015
## 564 Sat May 09 12:08:19 CEST 2015
## 565 Fri Jul 10 00:25:11 CEST 2015
## 566 Sat May 09 12:08:19 CEST 2015
## 567 Fri Jul 10 00:25:11 CEST 2015
## 568 Sat May 09 12:08:19 CEST 2015
## 569 Fri Jul 10 00:25:11 CEST 2015
## 570 Sat May 09 12:08:19 CEST 2015
## 571 Fri Jul 10 00:25:11 CEST 2015
## 572 Sat May 09 12:08:19 CEST 2015
## 573 Fri Jul 10 00:25:11 CEST 2015
## 574 Sat May 09 12:08:19 CEST 2015
## 575 Fri Jul 10 00:25:11 CEST 2015
## 576 Sat May 09 12:08:19 CEST 2015
## 577 Fri Jul 10 00:25:11 CEST 2015
## 578 Sat May 09 12:08:19 CEST 2015
## 579 Fri Jul 10 00:25:11 CEST 2015
## 580 Sat May 09 12:08:19 CEST 2015
## 581 Fri Jul 10 00:25:11 CEST 2015
## 582 Sat May 09 12:08:19 CEST 2015
## 583 Fri Jul 10 00:25:11 CEST 2015
## 584 Sat May 09 12:08:19 CEST 2015
## 585 Fri Jul 10 00:25:11 CEST 2015
## 586 Sat May 09 12:08:19 CEST 2015
## 587 Fri Jul 10 00:25:11 CEST 2015
## 588 Sat May 09 12:08:19 CEST 2015
## 589 Fri Jul 10 00:25:11 CEST 2015
## 590 Sat May 09 12:08:19 CEST 2015
## 591 Fri Jul 10 00:25:11 CEST 2015
## 592 Sat May 09 12:08:19 CEST 2015
## 593 Fri Jul 10 00:25:11 CEST 2015
## 594 Tue Mar 15 19:52:12 CET 2016
## 595 Thu Aug 04 10:16:39 CEST 2016
## 596 Sat Dec 10 19:05:51 CET 2016
## 597 Sun Mar 19 18:23:49 CET 2017
## 598 Sat Jun 10 19:56:40 CEST 2017
## 599 Thu Nov 02 17:44:55 CET 2017
## 600 Sat Oct 13 09:50:27 CEST 2018
## 601 Sun Oct 14 10:45:39 CEST 2018
## 602 Sun Oct 21 08:07:41 CEST 2018
## 603 Tue Jan 29 09:26:53 CET 2019
## 604 Mon Mar 30 16:09:20 CEST 2020
## 605 Thu Nov 19 15:50:59 CET 2020
## 606 Sat May 09 12:08:19 CEST 2015
## 607 Fri Jul 10 00:25:11 CEST 2015
## 608 Tue Mar 15 19:52:12 CET 2016
## 609 Thu Aug 04 10:16:39 CEST 2016
## 610 Sat Dec 10 19:05:51 CET 2016
## 611 Sun Mar 19 18:23:49 CET 2017
## 612 Sat Jun 10 19:56:40 CEST 2017
## 613 Thu Nov 02 17:44:55 CET 2017
## 614 Sat Oct 13 09:50:27 CEST 2018
## 615 Sun Oct 14 10:45:39 CEST 2018
## 616 Sun Oct 21 08:07:41 CEST 2018
## 617 Tue Jan 29 09:26:53 CET 2019
## 618 Mon Mar 30 16:09:20 CEST 2020
## 619 Thu Nov 19 15:50:59 CET 2020
## 620 Sat May 09 12:08:19 CEST 2015
## 621 Fri Jul 10 00:25:11 CEST 2015
## 622 Sat May 09 12:08:19 CEST 2015
## 623 Fri Jul 10 00:25:11 CEST 2015
## 624 Sat May 09 12:08:19 CEST 2015
## 625 Fri Jul 10 00:25:11 CEST 2015
## 626 Sat May 09 12:08:19 CEST 2015
## 627 Fri Jul 10 00:25:11 CEST 2015
## 628 Sat May 09 12:08:19 CEST 2015
## 629 Fri Jul 10 00:25:11 CEST 2015
## 630 Sat May 09 12:08:19 CEST 2015
## 631 Fri Jul 10 00:25:11 CEST 2015
## 632 Sat May 09 12:08:19 CEST 2015
## 633 Fri Jul 10 00:25:11 CEST 2015
## 634 Sat May 09 12:08:19 CEST 2015
## 635 Fri Jul 10 00:25:11 CEST 2015
## 636 Sat May 09 12:08:19 CEST 2015
## 637 Fri Jul 10 00:25:11 CEST 2015
## 638 Sat May 09 12:08:19 CEST 2015
## 639 Fri Jul 10 00:25:11 CEST 2015
## 640 Sat May 09 12:08:19 CEST 2015
## 641 Fri Jul 10 00:25:11 CEST 2015
## 642 Sat May 09 12:08:19 CEST 2015
## 643 Fri Jul 10 00:25:11 CEST 2015
## 644 Sat May 09 12:08:19 CEST 2015
## 645 Fri Jul 10 00:25:11 CEST 2015
## 646 Sat May 09 12:08:19 CEST 2015
## 647 Fri Jul 10 00:25:11 CEST 2015
## 648 Sat May 09 12:08:19 CEST 2015
## 649 Fri Jul 10 00:25:11 CEST 2015
## 650 Sat May 09 12:08:19 CEST 2015
## 651 Fri Jul 10 00:25:11 CEST 2015
## 652 Sat May 09 12:08:19 CEST 2015
## 653 Fri Jul 10 00:25:11 CEST 2015
## 654 Sat May 09 12:08:19 CEST 2015
## 655 Fri Jul 10 00:25:11 CEST 2015
## 656 Sat May 09 12:08:19 CEST 2015
## 657 Fri Jul 10 00:25:11 CEST 2015
## 658 Sat May 09 12:08:19 CEST 2015
## 659 Fri Jul 10 00:25:11 CEST 2015
## 660 Sat May 09 12:08:19 CEST 2015
## 661 Fri Jul 10 00:25:11 CEST 2015
## 662 Sat May 09 12:08:19 CEST 2015
## 663 Fri Jul 10 00:25:11 CEST 2015
## 664 Sat May 09 12:08:19 CEST 2015
## 665 Fri Jul 10 00:25:11 CEST 2015
## 666 Sat May 09 12:08:19 CEST 2015
## 667 Fri Jul 10 00:25:11 CEST 2015
## 668 Sat May 09 12:08:19 CEST 2015
## 669 Fri Jul 10 00:25:11 CEST 2015
## 670 Sat May 09 12:08:19 CEST 2015
## 671 Fri Jul 10 00:25:11 CEST 2015
## 672 Sat May 09 12:08:19 CEST 2015
## 673 Fri Jul 10 00:25:11 CEST 2015
## 674 Sat May 09 12:08:19 CEST 2015
## 675 Fri Jul 10 00:25:11 CEST 2015
## 676 Sat May 09 12:08:19 CEST 2015
## 677 Fri Jul 10 00:25:11 CEST 2015
## 678 Sat May 09 12:08:19 CEST 2015
## 679 Fri Jul 10 00:25:11 CEST 2015
## 680 Sat May 09 12:08:19 CEST 2015
## 681 Fri Jul 10 00:25:11 CEST 2015
## 682 Sat May 09 12:08:19 CEST 2015
## 683 Fri Jul 10 00:25:11 CEST 2015
## 684 Sat May 09 12:08:19 CEST 2015
## 685 Fri Jul 10 00:25:11 CEST 2015
## 686 Sat May 09 12:08:19 CEST 2015
## 687 Fri Jul 10 00:25:11 CEST 2015
## 688 Sat May 09 12:08:19 CEST 2015
## 689 Fri Jul 10 00:25:11 CEST 2015
## 690 Sat May 09 12:08:19 CEST 2015
## 691 Fri Jul 10 00:25:11 CEST 2015
## 692 Sat May 09 12:08:19 CEST 2015
## 693 Fri Jul 10 00:25:11 CEST 2015
## 694 Sat May 09 12:08:19 CEST 2015
## 695 Fri Jul 10 00:25:11 CEST 2015
## 696 Sat May 09 12:08:19 CEST 2015
## 697 Fri Jul 10 00:25:11 CEST 2015
## 698 Sat May 09 12:08:19 CEST 2015
## 699 Fri Jul 10 00:25:11 CEST 2015
## 700 Sat May 09 12:08:19 CEST 2015
## 701 Fri Jul 10 00:25:11 CEST 2015
## 702 Sat May 09 12:08:19 CEST 2015
## 703 Fri Jul 10 00:25:11 CEST 2015
## 704 Sat May 09 12:08:19 CEST 2015
## 705 Fri Jul 10 00:25:11 CEST 2015
## 706 Sat May 09 12:08:19 CEST 2015
## 707 Fri Jul 10 00:25:11 CEST 2015
## 708 Sat May 09 12:08:19 CEST 2015
## 709 Fri Jul 10 00:25:11 CEST 2015
## 710 Sat May 09 12:08:19 CEST 2015
## 711 Fri Jul 10 00:25:11 CEST 2015
## 712 Sat May 09 12:08:19 CEST 2015
## 713 Fri Jul 10 00:25:11 CEST 2015
## 714 Sat May 09 12:08:19 CEST 2015
## 715 Fri Jul 10 00:25:11 CEST 2015
## 716 Sat May 09 12:08:19 CEST 2015
## 717 Fri Jul 10 00:25:11 CEST 2015
## 718 Sat May 09 12:08:19 CEST 2015
## 719 Fri Jul 10 00:25:11 CEST 2015
## 720 Sat May 09 12:08:19 CEST 2015
## 721 Fri Jul 10 00:25:11 CEST 2015
## 722 Sat May 09 12:08:19 CEST 2015
## 723 Fri Jul 10 00:25:11 CEST 2015
## 724 Sat May 09 12:08:19 CEST 2015
## 725 Fri Jul 10 00:25:11 CEST 2015
## 726 Sat May 09 12:08:19 CEST 2015
## 727 Fri Jul 10 00:25:11 CEST 2015
## 728 Sat May 09 12:08:19 CEST 2015
## 729 Fri Jul 10 00:25:11 CEST 2015
## 730 Sat May 09 12:08:19 CEST 2015
## 731 Fri Jul 10 00:25:11 CEST 2015
## 732 Sat May 09 12:08:19 CEST 2015
## 733 Fri Jul 10 00:25:11 CEST 2015
## 734 Sat May 09 12:08:19 CEST 2015
## 735 Fri Jul 10 00:25:11 CEST 2015
## 736 Sat May 09 12:08:19 CEST 2015
## 737 Fri Jul 10 00:25:11 CEST 2015
## 738 Sat May 09 12:08:19 CEST 2015
## 739 Fri Jul 10 00:25:11 CEST 2015
## 740 Sat May 09 12:08:19 CEST 2015
## 741 Fri Jul 10 00:25:11 CEST 2015
## 742 Tue Mar 15 19:52:12 CET 2016
## 743 Thu Aug 04 10:16:39 CEST 2016
## 744 Sat Dec 10 19:05:51 CET 2016
## 745 Sun Mar 19 18:23:49 CET 2017
## 746 Sat Jun 10 19:56:40 CEST 2017
## 747 Thu Nov 02 17:44:55 CET 2017
## 748 Sat Oct 13 09:50:27 CEST 2018
## 749 Sun Oct 14 10:45:39 CEST 2018
## 750 Sun Oct 21 08:07:41 CEST 2018
## 751 Tue Jan 29 09:26:53 CET 2019
## 752 Mon Mar 30 16:09:20 CEST 2020
## 753 Thu Nov 19 15:50:59 CET 2020
## 754 Sat May 09 12:08:19 CEST 2015
## 755 Fri Jul 10 00:25:11 CEST 2015
## 756 Tue Mar 15 19:52:12 CET 2016
## 757 Thu Aug 04 10:16:39 CEST 2016
## 758 Sat Dec 10 19:05:51 CET 2016
## 759 Sun Mar 19 18:23:49 CET 2017
## 760 Sat Jun 10 19:56:40 CEST 2017
## 761 Thu Nov 02 17:44:55 CET 2017
## 762 Sat Oct 13 09:50:27 CEST 2018
## 763 Sun Oct 14 10:45:39 CEST 2018
## 764 Sun Oct 21 08:07:41 CEST 2018
## 765 Tue Jan 29 09:26:53 CET 2019
## 766 Mon Mar 30 16:09:20 CEST 2020
## 767 Thu Nov 19 15:50:59 CET 2020
## 768 Sat May 09 12:08:19 CEST 2015
## 769 Fri Jul 10 00:25:11 CEST 2015
## 770 Tue Mar 15 19:52:12 CET 2016
## 771 Thu Aug 04 10:16:39 CEST 2016
## 772 Sat Dec 10 19:05:51 CET 2016
## 773 Sun Mar 19 18:23:49 CET 2017
## 774 Sat Jun 10 19:56:40 CEST 2017
## 775 Thu Nov 02 17:44:55 CET 2017
## 776 Sat Oct 13 09:50:27 CEST 2018
## 777 Sun Oct 14 10:45:39 CEST 2018
## 778 Sun Oct 21 08:07:41 CEST 2018
## 779 Tue Jan 29 09:26:53 CET 2019
## 780 Mon Mar 30 16:09:20 CEST 2020
## 781 Thu Nov 19 15:50:59 CET 2020
## 782 Sat May 09 12:08:19 CEST 2015
## 783 Fri Jul 10 00:25:11 CEST 2015
## 784 Sat May 09 12:08:19 CEST 2015
## 785 Fri Jul 10 00:25:11 CEST 2015
## 786 Sat May 09 12:08:19 CEST 2015
## 787 Fri Jul 10 00:25:11 CEST 2015
## 788 Sat May 09 12:08:19 CEST 2015
## 789 Fri Jul 10 00:25:11 CEST 2015
## 790 Sat May 09 12:08:19 CEST 2015
## 791 Fri Jul 10 00:25:11 CEST 2015
## 792 Sat May 09 12:08:19 CEST 2015
## 793 Fri Jul 10 00:25:11 CEST 2015
## 794 Sat May 09 12:08:19 CEST 2015
## 795 Fri Jul 10 00:25:11 CEST 2015
## 796 Sat May 09 12:08:19 CEST 2015
## 797 Fri Jul 10 00:25:11 CEST 2015
## 798 Sat May 09 12:08:19 CEST 2015
## 799 Fri Jul 10 00:25:11 CEST 2015
## 800 Sat May 09 12:08:19 CEST 2015
## 801 Fri Jul 10 00:25:11 CEST 2015
## 802 Sat May 09 12:08:19 CEST 2015
## 803 Fri Jul 10 00:25:11 CEST 2015
## 804 Sat May 09 12:08:19 CEST 2015
## 805 Fri Jul 10 00:25:11 CEST 2015
## 806 Sat May 09 12:08:19 CEST 2015
## 807 Fri Jul 10 00:25:11 CEST 2015
## 808 Sat May 09 12:08:19 CEST 2015
## 809 Fri Jul 10 00:25:11 CEST 2015
## 810 Sat May 09 12:08:19 CEST 2015
## 811 Fri Jul 10 00:25:11 CEST 2015
## 812 Sat May 09 12:08:19 CEST 2015
## 813 Fri Jul 10 00:25:11 CEST 2015
## 814 Sat May 09 12:08:19 CEST 2015
## 815 Fri Jul 10 00:25:11 CEST 2015
## 816 Sat May 09 12:08:19 CEST 2015
## 817 Fri Jul 10 00:25:11 CEST 2015
## 818 Sat May 09 12:08:19 CEST 2015
## 819 Fri Jul 10 00:25:11 CEST 2015
## 820 Sat May 09 12:08:19 CEST 2015
## 821 Fri Jul 10 00:25:11 CEST 2015
## 822 Sat May 09 12:08:19 CEST 2015
## 823 Fri Jul 10 00:25:11 CEST 2015
## 824 Sat May 09 12:08:19 CEST 2015
## 825 Fri Jul 10 00:25:11 CEST 2015
## 826 Sat May 09 12:08:19 CEST 2015
## 827 Fri Jul 10 00:25:11 CEST 2015
## 828 Sat May 09 12:08:19 CEST 2015
## 829 Fri Jul 10 00:25:11 CEST 2015
## 830 Sat May 09 12:08:19 CEST 2015
## 831 Fri Jul 10 00:25:11 CEST 2015
## 832 Sat May 09 12:08:19 CEST 2015
## 833 Fri Jul 10 00:25:11 CEST 2015
## 834 Sat May 09 12:08:19 CEST 2015
## 835 Fri Jul 10 00:25:11 CEST 2015
## 836 Sat May 09 12:08:19 CEST 2015
## 837 Fri Jul 10 00:25:11 CEST 2015
## 838 Sat May 09 12:08:19 CEST 2015
## 839 Fri Jul 10 00:25:11 CEST 2015
## 840 Sat May 09 12:08:19 CEST 2015
## 841 Fri Jul 10 00:25:11 CEST 2015
## 842 Sat May 09 12:08:19 CEST 2015
## 843 Fri Jul 10 00:25:11 CEST 2015
## 844 Sat May 09 12:08:19 CEST 2015
## 845 Fri Jul 10 00:25:11 CEST 2015
## 846 Sat May 09 12:08:19 CEST 2015
## 847 Fri Jul 10 00:25:11 CEST 2015
## 848 Sat May 09 12:08:19 CEST 2015
## 849 Fri Jul 10 00:25:11 CEST 2015
## 850 Sat May 09 12:08:19 CEST 2015
## 851 Fri Jul 10 00:25:11 CEST 2015
## 852 Sat May 09 12:08:19 CEST 2015
## 853 Fri Jul 10 00:25:11 CEST 2015
## 854 Sat May 09 12:08:19 CEST 2015
## 855 Fri Jul 10 00:25:11 CEST 2015
## 856 Sat May 09 12:08:19 CEST 2015
## 857 Fri Jul 10 00:25:11 CEST 2015
## 858 Sat May 09 12:08:19 CEST 2015
## 859 Fri Jul 10 00:25:11 CEST 2015
## 860 Sat May 09 12:08:19 CEST 2015
## 861 Fri Jul 10 00:25:11 CEST 2015
## 862 Sat May 09 12:08:19 CEST 2015
## 863 Fri Jul 10 00:25:11 CEST 2015
## 864 Sat May 09 12:08:19 CEST 2015
## 865 Fri Jul 10 00:25:11 CEST 2015
## 866 Sat May 09 12:08:19 CEST 2015
## 867 Fri Jul 10 00:25:11 CEST 2015
## 868 Sat May 09 12:08:19 CEST 2015
## 869 Fri Jul 10 00:25:11 CEST 2015
## 870 Sat May 09 12:08:19 CEST 2015
## 871 Fri Jul 10 00:25:11 CEST 2015
## 872 Sat May 09 12:08:19 CEST 2015
## 873 Fri Jul 10 00:25:11 CEST 2015
## 874 Sat May 09 12:08:19 CEST 2015
## 875 Fri Jul 10 00:25:11 CEST 2015
## 876 Sat May 09 12:08:19 CEST 2015
## 877 Fri Jul 10 00:25:11 CEST 2015
## 878 Sat May 09 12:08:19 CEST 2015
## 879 Fri Jul 10 00:25:11 CEST 2015
## 880 Sat May 09 12:08:19 CEST 2015
## 881 Fri Jul 10 00:25:11 CEST 2015
## 882 Sat May 09 12:08:19 CEST 2015
## 883 Fri Jul 10 00:25:11 CEST 2015
## 884 Sat May 09 12:08:19 CEST 2015
## 885 Fri Jul 10 00:25:11 CEST 2015
## 886 Sat May 09 12:08:19 CEST 2015
## 887 Fri Jul 10 00:25:11 CEST 2015
## 888 Sat May 09 12:08:19 CEST 2015
## 889 Fri Jul 10 00:25:11 CEST 2015
## 890 Sat May 09 12:08:19 CEST 2015
## 891 Fri Jul 10 00:25:11 CEST 2015
## 892 Sat May 09 12:08:19 CEST 2015
## 893 Fri Jul 10 00:25:11 CEST 2015
## 894 Sat May 09 12:08:19 CEST 2015
## 895 Fri Jul 10 00:25:11 CEST 2015
## 896 Sat May 09 12:08:19 CEST 2015
## 897 Fri Jul 10 00:25:11 CEST 2015
## 898 Sat May 09 12:08:19 CEST 2015
## 899 Fri Jul 10 00:25:11 CEST 2015
## 900 Sat May 09 12:08:19 CEST 2015
## 901 Fri Jul 10 00:25:11 CEST 2015
## 902 Sat May 09 12:08:19 CEST 2015
## 903 Fri Jul 10 00:25:11 CEST 2015
## 904 Sat May 09 12:08:19 CEST 2015
## 905 Fri Jul 10 00:25:11 CEST 2015
## 906 Sat May 09 12:08:19 CEST 2015
## 907 Fri Jul 10 00:25:11 CEST 2015
## 908 Sat May 09 12:08:19 CEST 2015
## 909 Fri Jul 10 00:25:11 CEST 2015
## 910 Sat May 09 12:08:19 CEST 2015
## 911 Fri Jul 10 00:25:11 CEST 2015
## 912 Sat May 09 12:08:19 CEST 2015
## 913 Fri Jul 10 00:25:11 CEST 2015
## 914 Tue Mar 15 19:52:12 CET 2016
## 915 Thu Aug 04 10:16:39 CEST 2016
## 916 Sat Dec 10 19:05:51 CET 2016
## 917 Sun Mar 19 18:23:49 CET 2017
## 918 Sat Jun 10 19:56:40 CEST 2017
## 919 Thu Nov 02 17:44:55 CET 2017
## 920 Sat Oct 13 09:50:27 CEST 2018
## 921 Sun Oct 14 10:45:39 CEST 2018
## 922 Sun Oct 21 08:07:41 CEST 2018
## 923 Tue Jan 29 09:26:53 CET 2019
## 924 Mon Mar 30 16:09:20 CEST 2020
## 925 Thu Nov 19 15:50:59 CET 2020
## 926 Sat May 09 12:08:19 CEST 2015
## 927 Fri Jul 10 00:25:11 CEST 2015
## 928 Tue Mar 15 19:52:12 CET 2016
## 929 Thu Aug 04 10:16:39 CEST 2016
## 930 Sat Dec 10 19:05:51 CET 2016
## 931 Sun Mar 19 18:23:49 CET 2017
## 932 Sat Jun 10 19:56:40 CEST 2017
## 933 Thu Nov 02 17:44:55 CET 2017
## 934 Sat Oct 13 09:50:27 CEST 2018
## 935 Sun Oct 14 10:45:39 CEST 2018
## 936 Sun Oct 21 08:07:41 CEST 2018
## 937 Tue Jan 29 09:26:53 CET 2019
## 938 Mon Mar 30 16:09:20 CEST 2020
## 939 Thu Nov 19 15:50:59 CET 2020
## 940 Sat May 09 12:08:19 CEST 2015
## 941 Fri Jul 10 00:25:11 CEST 2015
## 942 Tue Mar 15 19:52:12 CET 2016
## 943 Thu Aug 04 10:16:39 CEST 2016
## 944 Sat Dec 10 19:05:51 CET 2016
## 945 Sun Mar 19 18:23:49 CET 2017
## 946 Sat Jun 10 19:56:40 CEST 2017
## 947 Thu Nov 02 17:44:55 CET 2017
## 948 Sat Oct 13 09:50:27 CEST 2018
## 949 Sun Oct 14 10:45:39 CEST 2018
## 950 Sun Oct 21 08:07:41 CEST 2018
## 951 Tue Jan 29 09:26:53 CET 2019
## 952 Mon Mar 30 16:09:20 CEST 2020
## 953 Thu Nov 19 15:50:59 CET 2020
## 954 Sat May 09 12:08:19 CEST 2015
## 955 Fri Jul 10 00:25:11 CEST 2015
## 956 Sat May 09 12:08:19 CEST 2015
## 957 Fri Jul 10 00:25:11 CEST 2015
## 958 Sat May 09 12:08:19 CEST 2015
## 959 Fri Jul 10 00:25:11 CEST 2015
## 960 Sat May 09 12:08:19 CEST 2015
## 961 Fri Jul 10 00:25:11 CEST 2015
## 962 Sat May 09 12:08:19 CEST 2015
## 963 Fri Jul 10 00:25:11 CEST 2015
## 964 Sat May 09 12:08:19 CEST 2015
## 965 Fri Jul 10 00:25:11 CEST 2015
## 966 Sat May 09 12:08:19 CEST 2015
## 967 Fri Jul 10 00:25:11 CEST 2015
## 968 Sat May 09 12:08:19 CEST 2015
## 969 Fri Jul 10 00:25:11 CEST 2015
## 970 Sat May 09 12:08:19 CEST 2015
## 971 Fri Jul 10 00:25:11 CEST 2015
## 972 Sat May 09 12:08:19 CEST 2015
## 973 Fri Jul 10 00:25:11 CEST 2015
## 974 Sat May 09 12:08:19 CEST 2015
## 975 Fri Jul 10 00:25:11 CEST 2015
## 976 Sat May 09 12:08:19 CEST 2015
## 977 Fri Jul 10 00:25:11 CEST 2015
## 978 Sat May 09 12:08:19 CEST 2015
## 979 Fri Jul 10 00:25:11 CEST 2015
## 980 Sat May 09 12:08:19 CEST 2015
## 981 Fri Jul 10 00:25:11 CEST 2015
## 982 Sat May 09 12:08:19 CEST 2015
## 983 Fri Jul 10 00:25:11 CEST 2015
## 984 Sat May 09 12:08:19 CEST 2015
## 985 Fri Jul 10 00:25:11 CEST 2015
## 986 Sat May 09 12:08:19 CEST 2015
## 987 Fri Jul 10 00:25:11 CEST 2015
## 988 Sat May 09 12:08:19 CEST 2015
## 989 Fri Jul 10 00:25:11 CEST 2015
## 990 Sat May 09 12:08:19 CEST 2015
## 991 Fri Jul 10 00:25:11 CEST 2015
## 992 Sat May 09 12:08:19 CEST 2015
## 993 Fri Jul 10 00:25:11 CEST 2015
## 994 Sat May 09 12:08:19 CEST 2015
## 995 Fri Jul 10 00:25:11 CEST 2015
## 996 Sat May 09 12:08:19 CEST 2015
## 997 Fri Jul 10 00:25:11 CEST 2015
## 998 Sat May 09 12:08:19 CEST 2015
## 999 Fri Jul 10 00:25:11 CEST 2015
## 1000 Sat May 09 12:08:19 CEST 2015
## 1001 Fri Jul 10 00:25:11 CEST 2015
## 1002 Sat May 09 12:08:19 CEST 2015
## 1003 Fri Jul 10 00:25:11 CEST 2015
## 1004 Sat May 09 12:08:19 CEST 2015
## 1005 Fri Jul 10 00:25:11 CEST 2015
## 1006 Sat May 09 12:08:19 CEST 2015
## 1007 Fri Jul 10 00:25:11 CEST 2015
## 1008 Sat May 09 12:08:19 CEST 2015
## 1009 Fri Jul 10 00:25:11 CEST 2015
## 1010 Sat May 09 12:08:19 CEST 2015
## 1011 Fri Jul 10 00:25:11 CEST 2015
## 1012 Sat May 09 12:08:19 CEST 2015
## 1013 Fri Jul 10 00:25:11 CEST 2015
## 1014 Sat May 09 12:08:19 CEST 2015
## 1015 Fri Jul 10 00:25:11 CEST 2015
## 1016 Sat May 09 12:08:19 CEST 2015
## 1017 Fri Jul 10 00:25:11 CEST 2015
## 1018 Sat May 09 12:08:19 CEST 2015
## 1019 Fri Jul 10 00:25:11 CEST 2015
## 1020 Sat May 09 12:08:19 CEST 2015
## 1021 Fri Jul 10 00:25:11 CEST 2015
## 1022 Sat May 09 12:08:19 CEST 2015
## 1023 Fri Jul 10 00:25:11 CEST 2015
## 1024 Sat May 09 12:08:19 CEST 2015
## 1025 Fri Jul 10 00:25:11 CEST 2015
## 1026 Sat May 09 12:08:19 CEST 2015
## 1027 Fri Jul 10 00:25:11 CEST 2015
## 1028 Sat May 09 12:08:19 CEST 2015
## 1029 Fri Jul 10 00:25:11 CEST 2015
## 1030 Sat May 09 12:08:19 CEST 2015
## 1031 Fri Jul 10 00:25:11 CEST 2015
## 1032 Sat May 09 12:08:19 CEST 2015
## 1033 Fri Jul 10 00:25:11 CEST 2015
## 1034 Sat May 09 12:08:19 CEST 2015
## 1035 Fri Jul 10 00:25:11 CEST 2015
## 1036 Sat May 09 12:08:19 CEST 2015
## 1037 Fri Jul 10 00:25:11 CEST 2015
## 1038 Sat May 09 12:08:19 CEST 2015
## 1039 Fri Jul 10 00:25:11 CEST 2015
## 1040 Sat May 09 12:08:19 CEST 2015
## 1041 Fri Jul 10 00:25:11 CEST 2015
## 1042 Sat May 09 12:08:19 CEST 2015
## 1043 Fri Jul 10 00:25:11 CEST 2015
## 1044 Sat May 09 12:08:19 CEST 2015
## 1045 Fri Jul 10 00:25:11 CEST 2015
## 1046 Sat May 09 12:08:19 CEST 2015
## 1047 Fri Jul 10 00:25:11 CEST 2015
## 1048 Sat May 09 12:08:19 CEST 2015
## 1049 Fri Jul 10 00:25:11 CEST 2015
## 1050 Sat May 09 12:08:19 CEST 2015
## 1051 Fri Jul 10 00:25:11 CEST 2015
## 1052 Sat May 09 12:08:19 CEST 2015
## 1053 Fri Jul 10 00:25:11 CEST 2015
## 1054 Sat May 09 12:08:19 CEST 2015
## 1055 Fri Jul 10 00:25:11 CEST 2015
## 1056 Sat May 09 12:08:19 CEST 2015
## 1057 Fri Jul 10 00:25:11 CEST 2015
## 1058 Sat May 09 12:08:19 CEST 2015
## 1059 Fri Jul 10 00:25:11 CEST 2015
## 1060 Sat May 09 12:08:19 CEST 2015
## 1061 Fri Jul 10 00:25:11 CEST 2015
## 1062 Sat May 09 12:08:19 CEST 2015
## 1063 Fri Jul 10 00:25:11 CEST 2015
## 1064 Sat May 09 12:08:19 CEST 2015
## 1065 Fri Jul 10 00:25:11 CEST 2015
## 1066 Sat May 09 12:08:19 CEST 2015
## 1067 Fri Jul 10 00:25:11 CEST 2015
## 1068 Sat May 09 12:08:19 CEST 2015
## 1069 Fri Jul 10 00:25:11 CEST 2015
## 1070 Sat May 09 12:08:19 CEST 2015
## 1071 Fri Jul 10 00:25:11 CEST 2015
## 1072 Sat May 09 12:08:19 CEST 2015
## 1073 Fri Jul 10 00:25:11 CEST 2015
## 1074 Sat May 09 12:08:19 CEST 2015
## 1075 Fri Jul 10 00:25:11 CEST 2015
## 1076 Sat May 09 12:08:19 CEST 2015
## 1077 Fri Jul 10 00:25:11 CEST 2015
## 1078 Sat May 09 12:08:19 CEST 2015
## 1079 Fri Jul 10 00:25:11 CEST 2015
## 1080 Sat May 09 12:08:19 CEST 2015
## 1081 Fri Jul 10 00:25:11 CEST 2015
## 1082 Sat May 09 12:08:19 CEST 2015
## 1083 Fri Jul 10 00:25:11 CEST 2015
## 1084 Sat May 09 12:08:19 CEST 2015
## 1085 Fri Jul 10 00:25:11 CEST 2015
## 1086 Tue Mar 15 19:52:12 CET 2016
## 1087 Thu Aug 04 10:16:39 CEST 2016
## 1088 Sat Dec 10 19:05:51 CET 2016
## 1089 Sun Mar 19 18:23:49 CET 2017
## 1090 Sat Jun 10 19:56:40 CEST 2017
## 1091 Thu Nov 02 17:44:55 CET 2017
## 1092 Sat Oct 13 09:50:27 CEST 2018
## 1093 Sun Oct 14 10:45:39 CEST 2018
## 1094 Sun Oct 21 08:07:41 CEST 2018
## 1095 Tue Jan 29 09:26:53 CET 2019
## 1096 Mon Mar 30 16:09:20 CEST 2020
## 1097 Thu Nov 19 15:50:59 CET 2020
## 1098 Sat May 09 12:08:19 CEST 2015
## 1099 Fri Jul 10 00:25:11 CEST 2015
## 1100 Tue Mar 15 19:52:12 CET 2016
## 1101 Thu Aug 04 10:16:39 CEST 2016
## 1102 Sat Dec 10 19:05:51 CET 2016
## 1103 Sun Mar 19 18:23:49 CET 2017
## 1104 Sat Jun 10 19:56:40 CEST 2017
## 1105 Thu Nov 02 17:44:55 CET 2017
## 1106 Sat Oct 13 09:50:27 CEST 2018
## 1107 Sun Oct 14 10:45:39 CEST 2018
## 1108 Sun Oct 21 08:07:41 CEST 2018
## 1109 Tue Jan 29 09:26:53 CET 2019
## 1110 Mon Mar 30 16:09:20 CEST 2020
## 1111 Thu Nov 19 15:50:59 CET 2020
## 1112 Sat May 09 12:08:19 CEST 2015
## 1113 Fri Jul 10 00:25:11 CEST 2015
## 1114 Tue Mar 15 19:52:12 CET 2016
## 1115 Thu Aug 04 10:16:39 CEST 2016
## 1116 Sat Dec 10 19:05:51 CET 2016
## 1117 Sun Mar 19 18:23:49 CET 2017
## 1118 Sat Jun 10 19:56:40 CEST 2017
## 1119 Thu Nov 02 17:44:55 CET 2017
## 1120 Sat Oct 13 09:50:27 CEST 2018
## 1121 Sun Oct 14 10:45:39 CEST 2018
## 1122 Sun Oct 21 08:07:41 CEST 2018
## 1123 Tue Jan 29 09:26:53 CET 2019
## 1124 Mon Mar 30 16:09:20 CEST 2020
## 1125 Thu Nov 19 15:50:59 CET 2020
## 1126 Sat May 09 12:08:19 CEST 2015
## 1127 Fri Jul 10 00:25:11 CEST 2015
## 1128 Sat May 09 12:08:19 CEST 2015
## 1129 Fri Jul 10 00:25:11 CEST 2015
## 1130 Sat May 09 12:08:19 CEST 2015
## 1131 Fri Jul 10 00:25:11 CEST 2015
## 1132 Sat May 09 12:08:19 CEST 2015
## 1133 Fri Jul 10 00:25:11 CEST 2015
## 1134 Sat May 09 12:08:19 CEST 2015
## 1135 Fri Jul 10 00:25:11 CEST 2015
## 1136 Sat May 09 12:08:19 CEST 2015
## 1137 Fri Jul 10 00:25:11 CEST 2015
## 1138 Sat May 09 12:08:19 CEST 2015
## 1139 Fri Jul 10 00:25:11 CEST 2015
## 1140 Sat May 09 12:08:19 CEST 2015
## 1141 Fri Jul 10 00:25:11 CEST 2015
## 1142 Sat May 09 12:08:19 CEST 2015
## 1143 Fri Jul 10 00:25:11 CEST 2015
## 1144 Sat May 09 12:08:19 CEST 2015
## 1145 Fri Jul 10 00:25:11 CEST 2015
## 1146 Sat May 09 12:08:19 CEST 2015
## 1147 Fri Jul 10 00:25:11 CEST 2015
## 1148 Sat May 09 12:08:19 CEST 2015
## 1149 Fri Jul 10 00:25:11 CEST 2015
## 1150 Sat May 09 12:08:19 CEST 2015
## 1151 Fri Jul 10 00:25:11 CEST 2015
## 1152 Sat May 09 12:08:19 CEST 2015
## 1153 Fri Jul 10 00:25:11 CEST 2015
## 1154 Sat May 09 12:08:19 CEST 2015
## 1155 Fri Jul 10 00:25:11 CEST 2015
## 1156 Sat May 09 12:08:19 CEST 2015
## 1157 Fri Jul 10 00:25:11 CEST 2015
## 1158 Sat May 09 12:08:19 CEST 2015
## 1159 Fri Jul 10 00:25:11 CEST 2015
## 1160 Sat May 09 12:08:19 CEST 2015
## 1161 Fri Jul 10 00:25:11 CEST 2015
## 1162 Sat May 09 12:08:19 CEST 2015
## 1163 Fri Jul 10 00:25:11 CEST 2015
## 1164 Sat May 09 12:08:19 CEST 2015
## 1165 Fri Jul 10 00:25:11 CEST 2015
## 1166 Sat May 09 12:08:19 CEST 2015
## 1167 Fri Jul 10 00:25:11 CEST 2015
## 1168 Sat May 09 12:08:19 CEST 2015
## 1169 Fri Jul 10 00:25:11 CEST 2015
## 1170 Sat May 09 12:08:19 CEST 2015
## 1171 Fri Jul 10 00:25:11 CEST 2015
## 1172 Sat May 09 12:08:19 CEST 2015
## 1173 Fri Jul 10 00:25:11 CEST 2015
## 1174 Sat May 09 12:08:19 CEST 2015
## 1175 Fri Jul 10 00:25:11 CEST 2015
## 1176 Sat May 09 12:08:19 CEST 2015
## 1177 Fri Jul 10 00:25:11 CEST 2015
## 1178 Sat May 09 12:08:19 CEST 2015
## 1179 Fri Jul 10 00:25:11 CEST 2015
## 1180 Sat May 09 12:08:19 CEST 2015
## 1181 Fri Jul 10 00:25:11 CEST 2015
## 1182 Sat May 09 12:08:19 CEST 2015
## 1183 Fri Jul 10 00:25:11 CEST 2015
## 1184 Sat May 09 12:08:19 CEST 2015
## 1185 Fri Jul 10 00:25:11 CEST 2015
## 1186 Sat May 09 12:08:19 CEST 2015
## 1187 Fri Jul 10 00:25:11 CEST 2015
## 1188 Sat May 09 12:08:19 CEST 2015
## 1189 Fri Jul 10 00:25:11 CEST 2015
## 1190 Sat May 09 12:08:19 CEST 2015
## 1191 Fri Jul 10 00:25:11 CEST 2015
## 1192 Sat May 09 12:08:19 CEST 2015
## 1193 Fri Jul 10 00:25:11 CEST 2015
## 1194 Sat May 09 12:08:19 CEST 2015
## 1195 Fri Jul 10 00:25:11 CEST 2015
## 1196 Sat May 09 12:08:19 CEST 2015
## 1197 Fri Jul 10 00:25:11 CEST 2015
## 1198 Sat May 09 12:08:19 CEST 2015
## 1199 Fri Jul 10 00:25:11 CEST 2015
## 1200 Sat May 09 12:08:19 CEST 2015
## 1201 Fri Jul 10 00:25:11 CEST 2015
## 1202 Sat May 09 12:08:19 CEST 2015
## 1203 Fri Jul 10 00:25:11 CEST 2015
## 1204 Sat May 09 12:08:19 CEST 2015
## 1205 Fri Jul 10 00:25:11 CEST 2015
## 1206 Sat May 09 12:08:19 CEST 2015
## 1207 Fri Jul 10 00:25:11 CEST 2015
## 1208 Sat May 09 12:08:19 CEST 2015
## 1209 Fri Jul 10 00:25:11 CEST 2015
## 1210 Sat May 09 12:08:19 CEST 2015
## 1211 Fri Jul 10 00:25:11 CEST 2015
## 1212 Sat May 09 12:08:19 CEST 2015
## 1213 Fri Jul 10 00:25:11 CEST 2015
## 1214 Sat May 09 12:08:19 CEST 2015
## 1215 Fri Jul 10 00:25:11 CEST 2015
## 1216 Sat May 09 12:08:19 CEST 2015
## 1217 Fri Jul 10 00:25:11 CEST 2015
## 1218 Sat May 09 12:08:19 CEST 2015
## 1219 Fri Jul 10 00:25:11 CEST 2015
## 1220 Sat May 09 12:08:19 CEST 2015
## 1221 Fri Jul 10 00:25:11 CEST 2015
## 1222 Sat May 09 12:08:19 CEST 2015
## 1223 Fri Jul 10 00:25:11 CEST 2015
## 1224 Sat May 09 12:08:19 CEST 2015
## 1225 Fri Jul 10 00:25:11 CEST 2015
## 1226 Sat May 09 12:08:19 CEST 2015
## 1227 Fri Jul 10 00:25:11 CEST 2015
## 1228 Sat May 09 12:08:19 CEST 2015
## 1229 Fri Jul 10 00:25:11 CEST 2015
## 1230 Sat May 09 12:08:19 CEST 2015
## 1231 Fri Jul 10 00:25:11 CEST 2015
## 1232 Sat May 09 12:08:19 CEST 2015
## 1233 Fri Jul 10 00:25:11 CEST 2015
## 1234 Sat May 09 12:08:19 CEST 2015
## 1235 Fri Jul 10 00:25:11 CEST 2015
## 1236 Sat May 09 12:08:19 CEST 2015
## 1237 Fri Jul 10 00:25:11 CEST 2015
## 1238 Sat May 09 12:08:19 CEST 2015
## 1239 Fri Jul 10 00:25:11 CEST 2015
## 1240 Sat May 09 12:08:19 CEST 2015
## 1241 Fri Jul 10 00:25:11 CEST 2015
## 1242 Sat May 09 12:08:19 CEST 2015
## 1243 Fri Jul 10 00:25:11 CEST 2015
## 1244 Sat May 09 12:08:19 CEST 2015
## 1245 Fri Jul 10 00:25:11 CEST 2015
## 1246 Sat May 09 12:08:19 CEST 2015
## 1247 Fri Jul 10 00:25:11 CEST 2015
## 1248 Sat May 09 12:08:19 CEST 2015
## 1249 Fri Jul 10 00:25:11 CEST 2015
## 1250 Sat May 09 12:08:19 CEST 2015
## 1251 Fri Jul 10 00:25:11 CEST 2015
## 1252 Sat May 09 12:08:19 CEST 2015
## 1253 Fri Jul 10 00:25:11 CEST 2015
## 1254 Sat May 09 12:08:19 CEST 2015
## 1255 Fri Jul 10 00:25:11 CEST 2015
## 1256 Sat May 09 12:08:19 CEST 2015
## 1257 Fri Jul 10 00:25:11 CEST 2015
## 1258 Sat May 09 12:08:19 CEST 2015
## 1259 Fri Jul 10 00:25:11 CEST 2015
## 1260 Sat May 09 12:08:19 CEST 2015
## 1261 Fri Jul 10 00:25:11 CEST 2015
## 1262 Tue Mar 15 19:52:12 CET 2016
## 1263 Thu Aug 04 10:16:39 CEST 2016
## 1264 Sat Dec 10 19:05:51 CET 2016
## 1265 Sun Mar 19 18:23:49 CET 2017
## 1266 Sat Jun 10 19:56:40 CEST 2017
## 1267 Thu Nov 02 17:44:55 CET 2017
## 1268 Sat Oct 13 09:50:27 CEST 2018
## 1269 Sun Oct 14 10:45:39 CEST 2018
## 1270 Sun Oct 21 08:07:41 CEST 2018
## 1271 Tue Jan 29 09:26:53 CET 2019
## 1272 Mon Mar 30 16:09:20 CEST 2020
## 1273 Thu Nov 19 15:50:59 CET 2020
## 1274 Sat May 09 12:08:19 CEST 2015
## 1275 Fri Jul 10 00:25:11 CEST 2015
## 1276 Tue Mar 15 19:52:12 CET 2016
## 1277 Thu Aug 04 10:16:39 CEST 2016
## 1278 Sat Dec 10 19:05:51 CET 2016
## 1279 Sun Mar 19 18:23:49 CET 2017
## 1280 Sat Jun 10 19:56:40 CEST 2017
## 1281 Thu Nov 02 17:44:55 CET 2017
## 1282 Sat Oct 13 09:50:27 CEST 2018
## 1283 Sun Oct 14 10:45:39 CEST 2018
## 1284 Sun Oct 21 08:07:41 CEST 2018
## 1285 Tue Jan 29 09:26:53 CET 2019
## 1286 Mon Mar 30 16:09:20 CEST 2020
## 1287 Thu Nov 19 15:50:59 CET 2020
## 1288 Sat May 09 12:08:19 CEST 2015
## 1289 Fri Jul 10 00:25:11 CEST 2015
## 1290 Tue Mar 15 19:52:12 CET 2016
## 1291 Thu Aug 04 10:16:39 CEST 2016
## 1292 Sat Dec 10 19:05:51 CET 2016
## 1293 Sun Mar 19 18:23:49 CET 2017
## 1294 Sat Jun 10 19:56:40 CEST 2017
## 1295 Thu Nov 02 17:44:55 CET 2017
## 1296 Sat Oct 13 09:50:27 CEST 2018
## 1297 Sun Oct 14 10:45:39 CEST 2018
## 1298 Sun Oct 21 08:07:41 CEST 2018
## 1299 Tue Jan 29 09:26:53 CET 2019
## 1300 Mon Mar 30 16:09:20 CEST 2020
## 1301 Thu Nov 19 15:50:59 CET 2020
## 1302 Sat May 09 12:08:19 CEST 2015
## 1303 Fri Jul 10 00:25:11 CEST 2015
## 1304 Sat May 09 12:08:19 CEST 2015
## 1305 Fri Jul 10 00:25:11 CEST 2015
## 1306 Sat May 09 12:08:19 CEST 2015
## 1307 Fri Jul 10 00:25:11 CEST 2015
## 1308 Sat May 09 12:08:19 CEST 2015
## 1309 Fri Jul 10 00:25:11 CEST 2015
## 1310 Sat May 09 12:08:19 CEST 2015
## 1311 Fri Jul 10 00:25:11 CEST 2015
## 1312 Sat May 09 12:08:19 CEST 2015
## 1313 Fri Jul 10 00:25:11 CEST 2015
## 1314 Sat May 09 12:08:19 CEST 2015
## 1315 Fri Jul 10 00:25:11 CEST 2015
## 1316 Sat May 09 12:08:19 CEST 2015
## 1317 Fri Jul 10 00:25:11 CEST 2015
## 1318 Sat May 09 12:08:19 CEST 2015
## 1319 Fri Jul 10 00:25:11 CEST 2015
## 1320 Sat May 09 12:08:19 CEST 2015
## 1321 Fri Jul 10 00:25:11 CEST 2015
## 1322 Sat May 09 12:08:19 CEST 2015
## 1323 Fri Jul 10 00:25:11 CEST 2015
## 1324 Sat May 09 12:08:19 CEST 2015
## 1325 Fri Jul 10 00:25:11 CEST 2015
## 1326 Sat May 09 12:08:19 CEST 2015
## 1327 Fri Jul 10 00:25:11 CEST 2015
## 1328 Sat May 09 12:08:19 CEST 2015
## 1329 Fri Jul 10 00:25:11 CEST 2015
## 1330 Sat May 09 12:08:19 CEST 2015
## 1331 Fri Jul 10 00:25:11 CEST 2015
## 1332 Sat May 09 12:08:19 CEST 2015
## 1333 Fri Jul 10 00:25:11 CEST 2015
## 1334 Sat May 09 12:08:19 CEST 2015
## 1335 Fri Jul 10 00:25:11 CEST 2015
## 1336 Sat May 09 12:08:19 CEST 2015
## 1337 Fri Jul 10 00:25:11 CEST 2015
## 1338 Sat May 09 12:08:19 CEST 2015
## 1339 Fri Jul 10 00:25:11 CEST 2015
## 1340 Sat May 09 12:08:19 CEST 2015
## 1341 Fri Jul 10 00:25:11 CEST 2015
## 1342 Sat May 09 12:08:19 CEST 2015
## 1343 Fri Jul 10 00:25:11 CEST 2015
## 1344 Sat May 09 12:08:19 CEST 2015
## 1345 Fri Jul 10 00:25:11 CEST 2015
## 1346 Sat May 09 12:08:19 CEST 2015
## 1347 Fri Jul 10 00:25:11 CEST 2015
## 1348 Sat May 09 12:08:19 CEST 2015
## 1349 Fri Jul 10 00:25:11 CEST 2015
## 1350 Sat May 09 12:08:19 CEST 2015
## 1351 Fri Jul 10 00:25:11 CEST 2015
## 1352 Sat May 09 12:08:19 CEST 2015
## 1353 Fri Jul 10 00:25:11 CEST 2015
## 1354 Sat May 09 12:08:19 CEST 2015
## 1355 Fri Jul 10 00:25:11 CEST 2015
## 1356 Sat May 09 12:08:19 CEST 2015
## 1357 Fri Jul 10 00:25:11 CEST 2015
## 1358 Sat May 09 12:08:19 CEST 2015
## 1359 Fri Jul 10 00:25:11 CEST 2015
## 1360 Sat May 09 12:08:19 CEST 2015
## 1361 Fri Jul 10 00:25:11 CEST 2015
## 1362 Sat May 09 12:08:19 CEST 2015
## 1363 Fri Jul 10 00:25:11 CEST 2015
## 1364 Sat May 09 12:08:19 CEST 2015
## 1365 Fri Jul 10 00:25:11 CEST 2015
## 1366 Sat May 09 12:08:19 CEST 2015
## 1367 Fri Jul 10 00:25:11 CEST 2015
## 1368 Sat May 09 12:08:19 CEST 2015
## 1369 Fri Jul 10 00:25:11 CEST 2015
## 1370 Sat May 09 12:08:19 CEST 2015
## 1371 Fri Jul 10 00:25:11 CEST 2015
## 1372 Sat May 09 12:08:19 CEST 2015
## 1373 Fri Jul 10 00:25:11 CEST 2015
## 1374 Sat May 09 12:08:19 CEST 2015
## 1375 Fri Jul 10 00:25:11 CEST 2015
## 1376 Sat May 09 12:08:19 CEST 2015
## 1377 Fri Jul 10 00:25:11 CEST 2015
## 1378 Sat May 09 12:08:19 CEST 2015
## 1379 Fri Jul 10 00:25:11 CEST 2015
## 1380 Sat May 09 12:08:19 CEST 2015
## 1381 Fri Jul 10 00:25:11 CEST 2015
## 1382 Sat May 09 12:08:19 CEST 2015
## 1383 Fri Jul 10 00:25:11 CEST 2015
## 1384 Sat May 09 12:08:19 CEST 2015
## 1385 Fri Jul 10 00:25:11 CEST 2015
## 1386 Sat May 09 12:08:19 CEST 2015
## 1387 Fri Jul 10 00:25:11 CEST 2015
## 1388 Sat May 09 12:08:19 CEST 2015
## 1389 Fri Jul 10 00:25:11 CEST 2015
## 1390 Sat May 09 12:08:19 CEST 2015
## 1391 Fri Jul 10 00:25:11 CEST 2015
## 1392 Sat May 09 12:08:19 CEST 2015
## 1393 Fri Jul 10 00:25:11 CEST 2015
## 1394 Sat May 09 12:08:19 CEST 2015
## 1395 Fri Jul 10 00:25:11 CEST 2015
## 1396 Sat May 09 12:08:19 CEST 2015
## 1397 Fri Jul 10 00:25:11 CEST 2015
## 1398 Sat May 09 12:08:19 CEST 2015
## 1399 Fri Jul 10 00:25:11 CEST 2015
## 1400 Sat May 09 12:08:19 CEST 2015
## 1401 Fri Jul 10 00:25:11 CEST 2015
## 1402 Sat May 09 12:08:19 CEST 2015
## 1403 Fri Jul 10 00:25:11 CEST 2015
## 1404 Sat May 09 12:08:19 CEST 2015
## 1405 Fri Jul 10 00:25:11 CEST 2015
## 1406 Sat May 09 12:08:19 CEST 2015
## 1407 Fri Jul 10 00:25:11 CEST 2015
## 1408 Sat May 09 12:08:19 CEST 2015
## 1409 Fri Jul 10 00:25:11 CEST 2015
## 1410 Sat May 09 12:08:19 CEST 2015
## 1411 Fri Jul 10 00:25:11 CEST 2015
## 1412 Sat May 09 12:08:19 CEST 2015
## 1413 Fri Jul 10 00:25:11 CEST 2015
## 1414 Sat May 09 12:08:19 CEST 2015
## 1415 Fri Jul 10 00:25:11 CEST 2015
## 1416 Sat May 09 12:08:19 CEST 2015
## 1417 Fri Jul 10 00:25:11 CEST 2015
## 1418 Sat May 09 12:08:19 CEST 2015
## 1419 Fri Jul 10 00:25:11 CEST 2015
## 1420 Sat May 09 12:08:19 CEST 2015
## 1421 Fri Jul 10 00:25:11 CEST 2015
## 1422 Sat May 09 12:08:19 CEST 2015
## 1423 Fri Jul 10 00:25:11 CEST 2015
## 1424 Sat May 09 12:08:19 CEST 2015
## 1425 Fri Jul 10 00:25:11 CEST 2015
## 1426 Sat May 09 12:08:19 CEST 2015
## 1427 Fri Jul 10 00:25:11 CEST 2015
## 1428 Sat May 09 12:08:19 CEST 2015
## 1429 Fri Jul 10 00:25:11 CEST 2015
## 1430 Sat May 09 12:08:19 CEST 2015
## 1431 Fri Jul 10 00:25:11 CEST 2015
## 1432 Sat May 09 12:08:19 CEST 2015
## 1433 Fri Jul 10 00:25:11 CEST 2015
## 1434 Sat May 09 12:08:19 CEST 2015
## 1435 Fri Jul 10 00:25:11 CEST 2015
## 1436 Sat May 09 12:08:19 CEST 2015
## 1437 Fri Jul 10 00:25:11 CEST 2015
## 1438 Sat May 09 12:08:19 CEST 2015
## 1439 Fri Jul 10 00:25:11 CEST 2015
## 1440 Sat May 09 12:08:19 CEST 2015
## 1441 Fri Jul 10 00:25:11 CEST 2015
## 1442 Sat May 09 12:08:19 CEST 2015
## 1443 Fri Jul 10 00:25:11 CEST 2015
## 1444 Tue Mar 15 19:52:12 CET 2016
## 1445 Thu Aug 04 10:16:39 CEST 2016
## 1446 Sat Dec 10 19:05:51 CET 2016
## 1447 Sun Mar 19 18:23:49 CET 2017
## 1448 Sat Jun 10 19:56:40 CEST 2017
## 1449 Thu Nov 02 17:44:55 CET 2017
## 1450 Sat Oct 13 09:50:27 CEST 2018
## 1451 Sun Oct 14 10:45:39 CEST 2018
## 1452 Sun Oct 21 08:07:41 CEST 2018
## 1453 Tue Jan 29 09:26:53 CET 2019
## 1454 Mon Mar 30 16:09:20 CEST 2020
## 1455 Thu Nov 19 15:50:59 CET 2020
## 1456 Sat May 09 12:08:19 CEST 2015
## 1457 Fri Jul 10 00:25:11 CEST 2015
## 1458 Tue Mar 15 19:52:12 CET 2016
## 1459 Thu Aug 04 10:16:39 CEST 2016
## 1460 Sat Dec 10 19:05:51 CET 2016
## 1461 Sun Mar 19 18:23:49 CET 2017
## 1462 Sat Jun 10 19:56:40 CEST 2017
## 1463 Thu Nov 02 17:44:55 CET 2017
## 1464 Sat Oct 13 09:50:27 CEST 2018
## 1465 Sun Oct 14 10:45:39 CEST 2018
## 1466 Sun Oct 21 08:07:41 CEST 2018
## 1467 Tue Jan 29 09:26:53 CET 2019
## 1468 Mon Mar 30 16:09:20 CEST 2020
## 1469 Thu Nov 19 15:50:59 CET 2020
## 1470 Sat May 09 12:08:19 CEST 2015
## 1471 Fri Jul 10 00:25:11 CEST 2015
## 1472 Tue Mar 15 19:52:12 CET 2016
## 1473 Thu Aug 04 10:16:39 CEST 2016
## 1474 Sat Dec 10 19:05:51 CET 2016
## 1475 Sun Mar 19 18:23:49 CET 2017
## 1476 Sat Jun 10 19:56:40 CEST 2017
## 1477 Thu Nov 02 17:44:55 CET 2017
## 1478 Sat Oct 13 09:50:27 CEST 2018
## 1479 Sun Oct 14 10:45:39 CEST 2018
## 1480 Sun Oct 21 08:07:41 CEST 2018
## 1481 Tue Jan 29 09:26:53 CET 2019
## 1482 Mon Mar 30 16:09:20 CEST 2020
## 1483 Thu Nov 19 15:50:59 CET 2020
## 1484 Sat May 09 12:08:19 CEST 2015
## 1485 Fri Jul 10 00:25:11 CEST 2015
## 1486 Sat May 09 12:08:19 CEST 2015
## 1487 Fri Jul 10 00:25:11 CEST 2015
## 1488 Sat May 09 12:08:19 CEST 2015
## 1489 Fri Jul 10 00:25:11 CEST 2015
## 1490 Sat May 09 12:08:19 CEST 2015
## 1491 Fri Jul 10 00:25:11 CEST 2015
## 1492 Sat May 09 12:08:19 CEST 2015
## 1493 Fri Jul 10 00:25:11 CEST 2015
## 1494 Sat May 09 12:08:19 CEST 2015
## 1495 Fri Jul 10 00:25:11 CEST 2015
## 1496 Sat May 09 12:08:19 CEST 2015
## 1497 Fri Jul 10 00:25:11 CEST 2015
## 1498 Sat May 09 12:08:19 CEST 2015
## 1499 Fri Jul 10 00:25:11 CEST 2015
## 1500 Sat May 09 12:08:19 CEST 2015
## 1501 Fri Jul 10 00:25:11 CEST 2015
## 1502 Sat May 09 12:08:19 CEST 2015
## 1503 Fri Jul 10 00:25:11 CEST 2015
## 1504 Sat May 09 12:08:19 CEST 2015
## 1505 Fri Jul 10 00:25:11 CEST 2015
## 1506 Sat May 09 12:08:19 CEST 2015
## 1507 Fri Jul 10 00:25:11 CEST 2015
## 1508 Sat May 09 12:08:19 CEST 2015
## 1509 Fri Jul 10 00:25:11 CEST 2015
## 1510 Sat May 09 12:08:19 CEST 2015
## 1511 Fri Jul 10 00:25:11 CEST 2015
## 1512 Sat May 09 12:08:19 CEST 2015
## 1513 Fri Jul 10 00:25:11 CEST 2015
## 1514 Sat May 09 12:08:19 CEST 2015
## 1515 Fri Jul 10 00:25:11 CEST 2015
## 1516 Sat May 09 12:08:19 CEST 2015
## 1517 Fri Jul 10 00:25:11 CEST 2015
## 1518 Sat May 09 12:08:19 CEST 2015
## 1519 Fri Jul 10 00:25:11 CEST 2015
## 1520 Sat May 09 12:08:19 CEST 2015
## 1521 Fri Jul 10 00:25:11 CEST 2015
## 1522 Sat May 09 12:08:19 CEST 2015
## 1523 Fri Jul 10 00:25:11 CEST 2015
## 1524 Sat May 09 12:08:19 CEST 2015
## 1525 Fri Jul 10 00:25:11 CEST 2015
## 1526 Sat May 09 12:08:19 CEST 2015
## 1527 Fri Jul 10 00:25:11 CEST 2015
## 1528 Sat May 09 12:08:19 CEST 2015
## 1529 Fri Jul 10 00:25:11 CEST 2015
## 1530 Sat May 09 12:08:19 CEST 2015
## 1531 Fri Jul 10 00:25:11 CEST 2015
## 1532 Sat May 09 12:08:19 CEST 2015
## 1533 Fri Jul 10 00:25:11 CEST 2015
## 1534 Sat May 09 12:08:19 CEST 2015
## 1535 Fri Jul 10 00:25:11 CEST 2015
## 1536 Sat May 09 12:08:19 CEST 2015
## 1537 Fri Jul 10 00:25:11 CEST 2015
## 1538 Sat May 09 12:08:19 CEST 2015
## 1539 Fri Jul 10 00:25:11 CEST 2015
## 1540 Sat May 09 12:08:19 CEST 2015
## 1541 Fri Jul 10 00:25:11 CEST 2015
## 1542 Sat May 09 12:08:19 CEST 2015
## 1543 Fri Jul 10 00:25:11 CEST 2015
## 1544 Sat May 09 12:08:19 CEST 2015
## 1545 Fri Jul 10 00:25:11 CEST 2015
## 1546 Sat May 09 12:08:19 CEST 2015
## 1547 Fri Jul 10 00:25:11 CEST 2015
## 1548 Sat May 09 12:08:19 CEST 2015
## 1549 Fri Jul 10 00:25:11 CEST 2015
## 1550 Sat May 09 12:08:19 CEST 2015
## 1551 Fri Jul 10 00:25:11 CEST 2015
## 1552 Sat May 09 12:08:19 CEST 2015
## 1553 Fri Jul 10 00:25:11 CEST 2015
## 1554 Sat May 09 12:08:19 CEST 2015
## 1555 Fri Jul 10 00:25:11 CEST 2015
## 1556 Sat May 09 12:08:19 CEST 2015
## 1557 Fri Jul 10 00:25:11 CEST 2015
## 1558 Sat May 09 12:08:19 CEST 2015
## 1559 Fri Jul 10 00:25:11 CEST 2015
## 1560 Sat May 09 12:08:19 CEST 2015
## 1561 Fri Jul 10 00:25:11 CEST 2015
## 1562 Sat May 09 12:08:19 CEST 2015
## 1563 Fri Jul 10 00:25:11 CEST 2015
## 1564 Sat May 09 12:08:19 CEST 2015
## 1565 Fri Jul 10 00:25:11 CEST 2015
## 1566 Sat May 09 12:08:19 CEST 2015
## 1567 Fri Jul 10 00:25:11 CEST 2015
## 1568 Sat May 09 12:08:19 CEST 2015
## 1569 Fri Jul 10 00:25:11 CEST 2015
## 1570 Sat May 09 12:08:19 CEST 2015
## 1571 Fri Jul 10 00:25:11 CEST 2015
## 1572 Sat May 09 12:08:19 CEST 2015
## 1573 Fri Jul 10 00:25:11 CEST 2015
## 1574 Sat May 09 12:08:19 CEST 2015
## 1575 Fri Jul 10 00:25:11 CEST 2015
## 1576 Sat May 09 12:08:19 CEST 2015
## 1577 Fri Jul 10 00:25:11 CEST 2015
## 1578 Sat May 09 12:08:19 CEST 2015
## 1579 Fri Jul 10 00:25:11 CEST 2015
## 1580 Sat May 09 12:08:19 CEST 2015
## 1581 Fri Jul 10 00:25:11 CEST 2015
## 1582 Sat May 09 12:08:19 CEST 2015
## 1583 Fri Jul 10 00:25:11 CEST 2015
## 1584 Sat May 09 12:08:19 CEST 2015
## 1585 Fri Jul 10 00:25:11 CEST 2015
## 1586 Sat May 09 12:08:19 CEST 2015
## 1587 Fri Jul 10 00:25:11 CEST 2015
## 1588 Sat May 09 12:08:19 CEST 2015
## 1589 Fri Jul 10 00:25:11 CEST 2015
## 1590 Sat May 09 12:08:19 CEST 2015
## 1591 Fri Jul 10 00:25:11 CEST 2015
## 1592 Sat May 09 12:08:19 CEST 2015
## 1593 Fri Jul 10 00:25:11 CEST 2015
## 1594 Sat May 09 12:08:19 CEST 2015
## 1595 Fri Jul 10 00:25:11 CEST 2015
## 1596 Sat May 09 12:08:19 CEST 2015
## 1597 Fri Jul 10 00:25:11 CEST 2015
## 1598 Sat May 09 12:08:19 CEST 2015
## 1599 Fri Jul 10 00:25:11 CEST 2015
## 1600 Sat May 09 12:08:19 CEST 2015
## 1601 Fri Jul 10 00:25:11 CEST 2015
## 1602 Sat May 09 12:08:19 CEST 2015
## 1603 Fri Jul 10 00:25:11 CEST 2015
## 1604 Sat May 09 12:08:19 CEST 2015
## 1605 Fri Jul 10 00:25:11 CEST 2015
## 1606 Sat May 09 12:08:19 CEST 2015
## 1607 Fri Jul 10 00:25:11 CEST 2015
## 1608 Sat May 09 12:08:19 CEST 2015
## 1609 Fri Jul 10 00:25:11 CEST 2015
## 1610 Sat May 09 12:08:19 CEST 2015
## 1611 Fri Jul 10 00:25:11 CEST 2015
## 1612 Sat May 09 12:08:19 CEST 2015
## 1613 Fri Jul 10 00:25:11 CEST 2015
## 1614 Sat May 09 12:08:19 CEST 2015
## 1615 Fri Jul 10 00:25:11 CEST 2015
## 1616 Sat May 09 12:08:19 CEST 2015
## 1617 Fri Jul 10 00:25:11 CEST 2015
## 1618 Sat May 09 12:08:19 CEST 2015
## 1619 Fri Jul 10 00:25:11 CEST 2015
## 1620 Sat May 09 12:08:19 CEST 2015
## 1621 Fri Jul 10 00:25:11 CEST 2015
## 1622 Sat May 09 12:08:19 CEST 2015
## 1623 Fri Jul 10 00:25:11 CEST 2015
## 1624 Sat May 09 12:08:19 CEST 2015
## 1625 Fri Jul 10 00:25:11 CEST 2015
## 1626 Sat May 09 12:08:19 CEST 2015
## 1627 Fri Jul 10 00:25:11 CEST 2015
## 1628 Tue Mar 15 19:52:12 CET 2016
## 1629 Thu Aug 04 10:16:39 CEST 2016
## 1630 Sat Dec 10 19:05:51 CET 2016
## 1631 Sun Mar 19 18:23:49 CET 2017
## 1632 Sat Jun 10 19:56:40 CEST 2017
## 1633 Thu Nov 02 17:44:55 CET 2017
## 1634 Sat Oct 13 09:50:27 CEST 2018
## 1635 Sun Oct 14 10:45:39 CEST 2018
## 1636 Sun Oct 21 08:07:41 CEST 2018
## 1637 Tue Jan 29 09:26:53 CET 2019
## 1638 Mon Mar 30 16:09:20 CEST 2020
## 1639 Thu Nov 19 15:50:59 CET 2020
## 1640 Sat May 09 12:08:19 CEST 2015
## 1641 Fri Jul 10 00:25:11 CEST 2015
## 1642 Tue Mar 15 19:52:12 CET 2016
## 1643 Thu Aug 04 10:16:39 CEST 2016
## 1644 Sat Dec 10 19:05:51 CET 2016
## 1645 Sun Mar 19 18:23:49 CET 2017
## 1646 Sat Jun 10 19:56:40 CEST 2017
## 1647 Thu Nov 02 17:44:55 CET 2017
## 1648 Sat Oct 13 09:50:27 CEST 2018
## 1649 Sun Oct 14 10:45:39 CEST 2018
## 1650 Sun Oct 21 08:07:41 CEST 2018
## 1651 Tue Jan 29 09:26:53 CET 2019
## 1652 Mon Mar 30 16:09:20 CEST 2020
## 1653 Thu Nov 19 15:50:59 CET 2020
## 1654 Sat May 09 12:08:19 CEST 2015
## 1655 Fri Jul 10 00:25:11 CEST 2015
## 1656 Tue Mar 15 19:52:12 CET 2016
## 1657 Thu Aug 04 10:16:39 CEST 2016
## 1658 Sat Dec 10 19:05:51 CET 2016
## 1659 Sun Mar 19 18:23:49 CET 2017
## 1660 Sat Jun 10 19:56:40 CEST 2017
## 1661 Thu Nov 02 17:44:55 CET 2017
## 1662 Sat Oct 13 09:50:27 CEST 2018
## 1663 Sun Oct 14 10:45:39 CEST 2018
## 1664 Sun Oct 21 08:07:41 CEST 2018
## 1665 Tue Jan 29 09:26:53 CET 2019
## 1666 Mon Mar 30 16:09:20 CEST 2020
## 1667 Thu Nov 19 15:50:59 CET 2020
## 1668 Sat May 09 12:08:19 CEST 2015
## 1669 Fri Jul 10 00:25:11 CEST 2015
## 1670 Sat May 09 12:08:19 CEST 2015
## 1671 Fri Jul 10 00:25:11 CEST 2015
## 1672 Sat May 09 12:08:19 CEST 2015
## 1673 Fri Jul 10 00:25:11 CEST 2015
## 1674 Sat May 09 12:08:19 CEST 2015
## 1675 Fri Jul 10 00:25:11 CEST 2015
## 1676 Sat May 09 12:08:19 CEST 2015
## 1677 Fri Jul 10 00:25:11 CEST 2015
## 1678 Sat May 09 12:08:19 CEST 2015
## 1679 Fri Jul 10 00:25:11 CEST 2015
## 1680 Sat May 09 12:08:19 CEST 2015
## 1681 Fri Jul 10 00:25:11 CEST 2015
## 1682 Sat May 09 12:08:19 CEST 2015
## 1683 Fri Jul 10 00:25:11 CEST 2015
## 1684 Sat May 09 12:08:19 CEST 2015
## 1685 Fri Jul 10 00:25:11 CEST 2015
## 1686 Sat May 09 12:08:19 CEST 2015
## 1687 Fri Jul 10 00:25:11 CEST 2015
## 1688 Sat May 09 12:08:19 CEST 2015
## 1689 Fri Jul 10 00:25:11 CEST 2015
## 1690 Sat May 09 12:08:19 CEST 2015
## 1691 Fri Jul 10 00:25:11 CEST 2015
## 1692 Sat May 09 12:08:19 CEST 2015
## 1693 Fri Jul 10 00:25:11 CEST 2015
## 1694 Sat May 09 12:08:19 CEST 2015
## 1695 Fri Jul 10 00:25:11 CEST 2015
## 1696 Sat May 09 12:08:19 CEST 2015
## 1697 Fri Jul 10 00:25:11 CEST 2015
## 1698 Sat May 09 12:08:19 CEST 2015
## 1699 Fri Jul 10 00:25:11 CEST 2015
## 1700 Sat May 09 12:08:19 CEST 2015
## 1701 Fri Jul 10 00:25:11 CEST 2015
## 1702 Sat May 09 12:08:19 CEST 2015
## 1703 Fri Jul 10 00:25:11 CEST 2015
## 1704 Sat May 09 12:08:19 CEST 2015
## 1705 Fri Jul 10 00:25:11 CEST 2015
## 1706 Sat May 09 12:08:19 CEST 2015
## 1707 Fri Jul 10 00:25:11 CEST 2015
## 1708 Sat May 09 12:08:19 CEST 2015
## 1709 Fri Jul 10 00:25:11 CEST 2015
## 1710 Sat May 09 12:08:19 CEST 2015
## 1711 Fri Jul 10 00:25:11 CEST 2015
## 1712 Sat May 09 12:08:19 CEST 2015
## 1713 Fri Jul 10 00:25:11 CEST 2015
## 1714 Sat May 09 12:08:19 CEST 2015
## 1715 Fri Jul 10 00:25:11 CEST 2015
## 1716 Sat May 09 12:08:19 CEST 2015
## 1717 Fri Jul 10 00:25:11 CEST 2015
## 1718 Sat May 09 12:08:19 CEST 2015
## 1719 Fri Jul 10 00:25:11 CEST 2015
## 1720 Sat May 09 12:08:19 CEST 2015
## 1721 Fri Jul 10 00:25:11 CEST 2015
## 1722 Sat May 09 12:08:19 CEST 2015
## 1723 Fri Jul 10 00:25:11 CEST 2015
## 1724 Sat May 09 12:08:19 CEST 2015
## 1725 Fri Jul 10 00:25:11 CEST 2015
## 1726 Sat May 09 12:08:19 CEST 2015
## 1727 Fri Jul 10 00:25:11 CEST 2015
## 1728 Sat May 09 12:08:19 CEST 2015
## 1729 Fri Jul 10 00:25:11 CEST 2015
## 1730 Sat May 09 12:08:19 CEST 2015
## 1731 Fri Jul 10 00:25:11 CEST 2015
## 1732 Sat May 09 12:08:19 CEST 2015
## 1733 Fri Jul 10 00:25:11 CEST 2015
## 1734 Sat May 09 12:08:19 CEST 2015
## 1735 Fri Jul 10 00:25:11 CEST 2015
## 1736 Sat May 09 12:08:19 CEST 2015
## 1737 Fri Jul 10 00:25:11 CEST 2015
## 1738 Sat May 09 12:08:19 CEST 2015
## 1739 Fri Jul 10 00:25:11 CEST 2015
## 1740 Sat May 09 12:08:19 CEST 2015
## 1741 Fri Jul 10 00:25:11 CEST 2015
## 1742 Sat May 09 12:08:19 CEST 2015
## 1743 Fri Jul 10 00:25:11 CEST 2015
## 1744 Sat May 09 12:08:19 CEST 2015
## 1745 Fri Jul 10 00:25:11 CEST 2015
## 1746 Sat May 09 12:08:19 CEST 2015
## 1747 Fri Jul 10 00:25:11 CEST 2015
## 1748 Sat May 09 12:08:19 CEST 2015
## 1749 Fri Jul 10 00:25:11 CEST 2015
## 1750 Sat May 09 12:08:19 CEST 2015
## 1751 Fri Jul 10 00:25:11 CEST 2015
## 1752 Sat May 09 12:08:19 CEST 2015
## 1753 Fri Jul 10 00:25:11 CEST 2015
## 1754 Sat May 09 12:08:19 CEST 2015
## 1755 Fri Jul 10 00:25:11 CEST 2015
## 1756 Sat May 09 12:08:19 CEST 2015
## 1757 Fri Jul 10 00:25:11 CEST 2015
## 1758 Sat May 09 12:08:19 CEST 2015
## 1759 Fri Jul 10 00:25:11 CEST 2015
## 1760 Sat May 09 12:08:19 CEST 2015
## 1761 Fri Jul 10 00:25:11 CEST 2015
## 1762 Sat May 09 12:08:19 CEST 2015
## 1763 Fri Jul 10 00:25:11 CEST 2015
## 1764 Sat May 09 12:08:19 CEST 2015
## 1765 Fri Jul 10 00:25:11 CEST 2015
## 1766 Sat May 09 12:08:19 CEST 2015
## 1767 Fri Jul 10 00:25:11 CEST 2015
## 1768 Sat May 09 12:08:19 CEST 2015
## 1769 Fri Jul 10 00:25:11 CEST 2015
## 1770 Sat May 09 12:08:19 CEST 2015
## 1771 Fri Jul 10 00:25:11 CEST 2015
## 1772 Sat May 09 12:08:19 CEST 2015
## 1773 Fri Jul 10 00:25:11 CEST 2015
## 1774 Sat May 09 12:08:19 CEST 2015
## 1775 Fri Jul 10 00:25:11 CEST 2015
## 1776 Sat May 09 12:08:19 CEST 2015
## 1777 Fri Jul 10 00:25:11 CEST 2015
## 1778 Sat May 09 12:08:19 CEST 2015
## 1779 Fri Jul 10 00:25:11 CEST 2015
## 1780 Sat May 09 12:08:19 CEST 2015
## 1781 Fri Jul 10 00:25:11 CEST 2015
## 1782 Sat May 09 12:08:19 CEST 2015
## 1783 Fri Jul 10 00:25:11 CEST 2015
## 1784 Sat May 09 12:08:19 CEST 2015
## 1785 Fri Jul 10 00:25:11 CEST 2015
## 1786 Sat May 09 12:08:19 CEST 2015
## 1787 Fri Jul 10 00:25:11 CEST 2015
## 1788 Sat May 09 12:08:19 CEST 2015
## 1789 Fri Jul 10 00:25:11 CEST 2015
## 1790 Sat May 09 12:08:19 CEST 2015
## 1791 Fri Jul 10 00:25:11 CEST 2015
## 1792 Sat May 09 12:08:19 CEST 2015
## 1793 Fri Jul 10 00:25:11 CEST 2015
## 1794 Sat May 09 12:08:19 CEST 2015
## 1795 Fri Jul 10 00:25:11 CEST 2015
## 1796 Sat May 09 12:08:19 CEST 2015
## 1797 Fri Jul 10 00:25:11 CEST 2015
## 1798 Sat May 09 12:08:19 CEST 2015
## 1799 Fri Jul 10 00:25:11 CEST 2015
## 1800 Sat May 09 12:08:19 CEST 2015
## 1801 Fri Jul 10 00:25:11 CEST 2015
## 1802 Sat May 09 12:08:19 CEST 2015
## 1803 Fri Jul 10 00:25:11 CEST 2015
## 1804 Sat May 09 12:08:19 CEST 2015
## 1805 Fri Jul 10 00:25:11 CEST 2015
## 1806 Sat May 09 12:08:19 CEST 2015
## 1807 Fri Jul 10 00:25:11 CEST 2015
## 1808 Sat May 09 12:08:19 CEST 2015
## 1809 Fri Jul 10 00:25:11 CEST 2015
## 1810 Tue Mar 15 19:52:12 CET 2016
## 1811 Thu Aug 04 10:16:39 CEST 2016
## 1812 Sat Dec 10 19:05:51 CET 2016
## 1813 Sun Mar 19 18:23:49 CET 2017
## 1814 Sat Jun 10 19:56:40 CEST 2017
## 1815 Thu Nov 02 17:44:55 CET 2017
## 1816 Sat Oct 13 09:50:27 CEST 2018
## 1817 Sun Oct 14 10:45:39 CEST 2018
## 1818 Sun Oct 21 08:07:41 CEST 2018
## 1819 Tue Jan 29 09:26:53 CET 2019
## 1820 Mon Mar 30 16:09:20 CEST 2020
## 1821 Thu Nov 19 15:50:59 CET 2020
## 1822 Tue Mar 15 19:52:12 CET 2016
## 1823 Thu Aug 04 10:16:39 CEST 2016
## 1824 Sat Dec 10 19:05:51 CET 2016
## 1825 Sun Mar 19 18:23:49 CET 2017
## 1826 Sat Jun 10 19:56:40 CEST 2017
## 1827 Thu Nov 02 17:44:55 CET 2017
## 1828 Sat Oct 13 09:50:27 CEST 2018
## 1829 Sun Oct 14 10:45:39 CEST 2018
## 1830 Sun Oct 21 08:07:41 CEST 2018
## 1831 Tue Jan 29 09:26:53 CET 2019
## 1832 Mon Mar 30 16:09:20 CEST 2020
## 1833 Thu Nov 19 15:50:59 CET 2020
## 1834 Tue Mar 15 19:52:12 CET 2016
## 1835 Thu Aug 04 10:16:39 CEST 2016
## 1836 Sat Dec 10 19:05:51 CET 2016
## 1837 Sun Mar 19 18:23:49 CET 2017
## 1838 Sat Jun 10 19:56:40 CEST 2017
## 1839 Thu Nov 02 17:44:55 CET 2017
## 1840 Sat Oct 13 09:50:27 CEST 2018
## 1841 Sun Oct 14 10:45:39 CEST 2018
## 1842 Sun Oct 21 08:07:41 CEST 2018
## 1843 Tue Jan 29 09:26:53 CET 2019
## 1844 Mon Mar 30 16:09:20 CEST 2020
## 1845 Thu Nov 19 15:50:59 CET 2020
## 1846 Sat May 09 12:08:19 CEST 2015
## 1847 Fri Jul 10 00:25:11 CEST 2015
## 1848 Tue Mar 15 19:52:12 CET 2016
## 1849 Thu Aug 04 10:16:39 CEST 2016
## 1850 Sat Dec 10 19:05:51 CET 2016
## 1851 Sun Mar 19 18:23:49 CET 2017
## 1852 Sat Jun 10 19:56:40 CEST 2017
## 1853 Thu Nov 02 17:44:55 CET 2017
## 1854 Sat Oct 13 09:50:27 CEST 2018
## 1855 Sun Oct 14 10:45:39 CEST 2018
## 1856 Sun Oct 21 08:07:41 CEST 2018
## 1857 Tue Jan 29 09:26:53 CET 2019
## 1858 Mon Mar 30 16:09:20 CEST 2020
## 1859 Thu Nov 19 15:50:59 CET 2020
## 1860 Sat May 09 12:08:19 CEST 2015
## 1861 Fri Jul 10 00:25:11 CEST 2015
## 1862 Tue Mar 15 19:52:12 CET 2016
## 1863 Thu Aug 04 10:16:39 CEST 2016
## 1864 Sat Dec 10 19:05:51 CET 2016
## 1865 Sun Mar 19 18:23:49 CET 2017
## 1866 Sat Jun 10 19:56:40 CEST 2017
## 1867 Thu Nov 02 17:44:55 CET 2017
## 1868 Sat Oct 13 09:50:27 CEST 2018
## 1869 Sun Oct 14 10:45:39 CEST 2018
## 1870 Sun Oct 21 08:07:41 CEST 2018
## 1871 Tue Jan 29 09:26:53 CET 2019
## 1872 Mon Mar 30 16:09:20 CEST 2020
## 1873 Thu Nov 19 15:50:59 CET 2020
## 1874 Tue Mar 15 19:52:12 CET 2016
## 1875 Thu Aug 04 10:16:39 CEST 2016
## 1876 Sat Dec 10 19:05:51 CET 2016
## 1877 Sun Mar 19 18:23:49 CET 2017
## 1878 Sat Jun 10 19:56:40 CEST 2017
## 1879 Thu Nov 02 17:44:55 CET 2017
## 1880 Sat Oct 13 09:50:27 CEST 2018
## 1881 Sun Oct 14 10:45:39 CEST 2018
## 1882 Sun Oct 21 08:07:41 CEST 2018
## 1883 Tue Jan 29 09:26:53 CET 2019
## 1884 Mon Mar 30 16:09:20 CEST 2020
## 1885 Thu Nov 19 15:50:59 CET 2020
## 1886 Tue Mar 15 19:52:12 CET 2016
## 1887 Thu Aug 04 10:16:39 CEST 2016
## 1888 Sat Dec 10 19:05:51 CET 2016
## 1889 Sun Mar 19 18:23:49 CET 2017
## 1890 Sat Jun 10 19:56:40 CEST 2017
## 1891 Thu Nov 02 17:44:55 CET 2017
## 1892 Sat Oct 13 09:50:27 CEST 2018
## 1893 Sun Oct 14 10:45:39 CEST 2018
## 1894 Sun Oct 21 08:07:41 CEST 2018
## 1895 Tue Jan 29 09:26:53 CET 2019
## 1896 Mon Mar 30 16:09:20 CEST 2020
## 1897 Thu Nov 19 15:50:59 CET 2020
## 1898 Tue Mar 15 19:52:12 CET 2016
## 1899 Thu Aug 04 10:16:39 CEST 2016
## 1900 Sat Dec 10 19:05:51 CET 2016
## 1901 Sun Mar 19 18:23:49 CET 2017
## 1902 Sat Jun 10 19:56:40 CEST 2017
## 1903 Thu Nov 02 17:44:55 CET 2017
## 1904 Sat Oct 13 09:50:27 CEST 2018
## 1905 Sun Oct 14 10:45:39 CEST 2018
## 1906 Sun Oct 21 08:07:41 CEST 2018
## 1907 Tue Jan 29 09:26:53 CET 2019
## 1908 Mon Mar 30 16:09:20 CEST 2020
## 1909 Thu Nov 19 15:50:59 CET 2020
## 1910 Tue Mar 15 19:52:12 CET 2016
## 1911 Thu Aug 04 10:16:39 CEST 2016
## 1912 Sat Dec 10 19:05:51 CET 2016
## 1913 Sun Mar 19 18:23:49 CET 2017
## 1914 Sat Jun 10 19:56:40 CEST 2017
## 1915 Thu Nov 02 17:44:55 CET 2017
## 1916 Sat Oct 13 09:50:27 CEST 2018
## 1917 Sun Oct 14 10:45:39 CEST 2018
## 1918 Sun Oct 21 08:07:41 CEST 2018
## 1919 Tue Jan 29 09:26:53 CET 2019
## 1920 Mon Mar 30 16:09:20 CEST 2020
## 1921 Thu Nov 19 15:50:59 CET 2020
## 1922 Tue Mar 15 19:52:12 CET 2016
## 1923 Thu Aug 04 10:16:39 CEST 2016
## 1924 Sat Dec 10 19:05:51 CET 2016
## 1925 Sun Mar 19 18:23:49 CET 2017
## 1926 Sat Jun 10 19:56:40 CEST 2017
## 1927 Thu Nov 02 17:44:55 CET 2017
## 1928 Sat Oct 13 09:50:27 CEST 2018
## 1929 Sun Oct 14 10:45:39 CEST 2018
## 1930 Sun Oct 21 08:07:41 CEST 2018
## 1931 Tue Jan 29 09:26:53 CET 2019
## 1932 Mon Mar 30 16:09:20 CEST 2020
## 1933 Thu Nov 19 15:50:59 CET 2020
## 1934 Tue Mar 15 19:52:12 CET 2016
## 1935 Thu Aug 04 10:16:39 CEST 2016
## 1936 Sat Dec 10 19:05:51 CET 2016
## 1937 Sun Mar 19 18:23:49 CET 2017
## 1938 Sat Jun 10 19:56:40 CEST 2017
## 1939 Thu Nov 02 17:44:55 CET 2017
## 1940 Sat Oct 13 09:50:27 CEST 2018
## 1941 Sun Oct 14 10:45:39 CEST 2018
## 1942 Sun Oct 21 08:07:41 CEST 2018
## 1943 Tue Jan 29 09:26:53 CET 2019
## 1944 Mon Mar 30 16:09:20 CEST 2020
## 1945 Thu Nov 19 15:50:59 CET 2020
## 1946 Tue Mar 15 19:52:12 CET 2016
## 1947 Thu Aug 04 10:16:39 CEST 2016
## 1948 Sat Dec 10 19:05:51 CET 2016
## 1949 Sun Mar 19 18:23:49 CET 2017
## 1950 Sat Jun 10 19:56:40 CEST 2017
## 1951 Thu Nov 02 17:44:55 CET 2017
## 1952 Sat Oct 13 09:50:27 CEST 2018
## 1953 Sun Oct 14 10:45:39 CEST 2018
## 1954 Sun Oct 21 08:07:41 CEST 2018
## 1955 Tue Jan 29 09:26:53 CET 2019
## 1956 Mon Mar 30 16:09:20 CEST 2020
## 1957 Thu Nov 19 15:50:59 CET 2020
## 1958 Tue Mar 15 19:52:12 CET 2016
## 1959 Thu Aug 04 10:16:39 CEST 2016
## 1960 Sat Dec 10 19:05:51 CET 2016
## 1961 Sun Mar 19 18:23:49 CET 2017
## 1962 Sat Jun 10 19:56:40 CEST 2017
## 1963 Thu Nov 02 17:44:55 CET 2017
## 1964 Sat Oct 13 09:50:27 CEST 2018
## 1965 Sun Oct 14 10:45:39 CEST 2018
## 1966 Sun Oct 21 08:07:41 CEST 2018
## 1967 Tue Jan 29 09:26:53 CET 2019
## 1968 Mon Mar 30 16:09:20 CEST 2020
## 1969 Thu Nov 19 15:50:59 CET 2020
## 1970 Tue Mar 15 19:52:12 CET 2016
## 1971 Thu Aug 04 10:16:39 CEST 2016
## 1972 Sat Dec 10 19:05:51 CET 2016
## 1973 Sun Mar 19 18:23:49 CET 2017
## 1974 Sat Jun 10 19:56:40 CEST 2017
## 1975 Thu Nov 02 17:44:55 CET 2017
## 1976 Sat Oct 13 09:50:27 CEST 2018
## 1977 Sun Oct 14 10:45:39 CEST 2018
## 1978 Sun Oct 21 08:07:41 CEST 2018
## 1979 Tue Jan 29 09:26:53 CET 2019
## 1980 Mon Mar 30 16:09:20 CEST 2020
## 1981 Thu Nov 19 15:50:59 CET 2020
## 1982 Tue Mar 15 19:52:12 CET 2016
## 1983 Thu Aug 04 10:16:39 CEST 2016
## 1984 Sat Dec 10 19:05:51 CET 2016
## 1985 Sun Mar 19 18:23:49 CET 2017
## 1986 Sat Jun 10 19:56:40 CEST 2017
## 1987 Thu Nov 02 17:44:55 CET 2017
## 1988 Sat Oct 13 09:50:27 CEST 2018
## 1989 Sun Oct 14 10:45:39 CEST 2018
## 1990 Sun Oct 21 08:07:41 CEST 2018
## 1991 Tue Jan 29 09:26:53 CET 2019
## 1992 Mon Mar 30 16:09:20 CEST 2020
## 1993 Thu Nov 19 15:50:59 CET 2020
## 1994 Tue Mar 15 19:52:12 CET 2016
## 1995 Thu Aug 04 10:16:39 CEST 2016
## 1996 Sat Dec 10 19:05:51 CET 2016
## 1997 Sun Mar 19 18:23:49 CET 2017
## 1998 Sat Jun 10 19:56:40 CEST 2017
## 1999 Thu Nov 02 17:44:55 CET 2017
## 2000 Sat Oct 13 09:50:27 CEST 2018
## 2001 Sun Oct 14 10:45:39 CEST 2018
## 2002 Sun Oct 21 08:07:41 CEST 2018
## 2003 Tue Jan 29 09:26:53 CET 2019
## 2004 Mon Mar 30 16:09:20 CEST 2020
## 2005 Thu Nov 19 15:50:59 CET 2020
## 2006 Tue Mar 15 19:52:12 CET 2016
## 2007 Thu Aug 04 10:16:39 CEST 2016
## 2008 Sat Dec 10 19:05:51 CET 2016
## 2009 Sun Mar 19 18:23:49 CET 2017
## 2010 Sat Jun 10 19:56:40 CEST 2017
## 2011 Thu Nov 02 17:44:55 CET 2017
## 2012 Sat Oct 13 09:50:27 CEST 2018
## 2013 Sun Oct 14 10:45:39 CEST 2018
## 2014 Sun Oct 21 08:07:41 CEST 2018
## 2015 Tue Jan 29 09:26:53 CET 2019
## 2016 Mon Mar 30 16:09:20 CEST 2020
## 2017 Thu Nov 19 15:50:59 CET 2020
## 2018 Tue Mar 15 19:52:12 CET 2016
## 2019 Thu Aug 04 10:16:39 CEST 2016
## 2020 Sat Dec 10 19:05:51 CET 2016
## 2021 Sun Mar 19 18:23:49 CET 2017
## 2022 Sat Jun 10 19:56:40 CEST 2017
## 2023 Thu Nov 02 17:44:55 CET 2017
## 2024 Sat Oct 13 09:50:27 CEST 2018
## 2025 Sun Oct 14 10:45:39 CEST 2018
## 2026 Sun Oct 21 08:07:41 CEST 2018
## 2027 Tue Jan 29 09:26:53 CET 2019
## 2028 Mon Mar 30 16:09:20 CEST 2020
## 2029 Thu Nov 19 15:50:59 CET 2020
## 2030 Tue Mar 15 19:52:12 CET 2016
## 2031 Thu Aug 04 10:16:39 CEST 2016
## 2032 Sat Dec 10 19:05:51 CET 2016
## 2033 Sun Mar 19 18:23:49 CET 2017
## 2034 Sat Jun 10 19:56:40 CEST 2017
## 2035 Thu Nov 02 17:44:55 CET 2017
## 2036 Sat Oct 13 09:50:27 CEST 2018
## 2037 Sun Oct 14 10:45:39 CEST 2018
## 2038 Sun Oct 21 08:07:41 CEST 2018
## 2039 Tue Jan 29 09:26:53 CET 2019
## 2040 Mon Mar 30 16:09:20 CEST 2020
## 2041 Thu Nov 19 15:50:59 CET 2020
## 2042 Tue Mar 15 19:52:12 CET 2016
## 2043 Thu Aug 04 10:16:39 CEST 2016
## 2044 Sat Dec 10 19:05:51 CET 2016
## 2045 Sun Mar 19 18:23:49 CET 2017
## 2046 Sat Jun 10 19:56:40 CEST 2017
## 2047 Thu Nov 02 17:44:55 CET 2017
## 2048 Sat Oct 13 09:50:27 CEST 2018
## 2049 Sun Oct 14 10:45:39 CEST 2018
## 2050 Sun Oct 21 08:07:41 CEST 2018
## 2051 Tue Jan 29 09:26:53 CET 2019
## 2052 Mon Mar 30 16:09:20 CEST 2020
## 2053 Thu Nov 19 15:50:59 CET 2020
## 2054 Tue Mar 15 19:52:12 CET 2016
## 2055 Thu Aug 04 10:16:39 CEST 2016
## 2056 Sat Dec 10 19:05:51 CET 2016
## 2057 Sun Mar 19 18:23:49 CET 2017
## 2058 Sat Jun 10 19:56:40 CEST 2017
## 2059 Thu Nov 02 17:44:55 CET 2017
## 2060 Sat Oct 13 09:50:27 CEST 2018
## 2061 Sun Oct 14 10:45:39 CEST 2018
## 2062 Sun Oct 21 08:07:41 CEST 2018
## 2063 Tue Jan 29 09:26:53 CET 2019
## 2064 Mon Mar 30 16:09:20 CEST 2020
## 2065 Thu Nov 19 15:50:59 CET 2020
## 2066 Tue Mar 15 19:52:12 CET 2016
## 2067 Thu Aug 04 10:16:39 CEST 2016
## 2068 Sat Dec 10 19:05:51 CET 2016
## 2069 Sun Mar 19 18:23:49 CET 2017
## 2070 Sat Jun 10 19:56:40 CEST 2017
## 2071 Thu Nov 02 17:44:55 CET 2017
## 2072 Sat Oct 13 09:50:27 CEST 2018
## 2073 Sun Oct 14 10:45:39 CEST 2018
## 2074 Sun Oct 21 08:07:41 CEST 2018
## 2075 Tue Jan 29 09:26:53 CET 2019
## 2076 Mon Mar 30 16:09:20 CEST 2020
## 2077 Thu Nov 19 15:50:59 CET 2020
## 2078 Tue Mar 15 19:52:12 CET 2016
## 2079 Thu Aug 04 10:16:39 CEST 2016
## 2080 Sat Dec 10 19:05:51 CET 2016
## 2081 Sun Mar 19 18:23:49 CET 2017
## 2082 Sat Jun 10 19:56:40 CEST 2017
## 2083 Thu Nov 02 17:44:55 CET 2017
## 2084 Sat Oct 13 09:50:27 CEST 2018
## 2085 Sun Oct 14 10:45:39 CEST 2018
## 2086 Sun Oct 21 08:07:41 CEST 2018
## 2087 Tue Jan 29 09:26:53 CET 2019
## 2088 Mon Mar 30 16:09:20 CEST 2020
## 2089 Thu Nov 19 15:50:59 CET 2020
## 2090 Tue Mar 15 19:52:12 CET 2016
## 2091 Thu Aug 04 10:16:39 CEST 2016
## 2092 Sat Dec 10 19:05:51 CET 2016
## 2093 Sun Mar 19 18:23:49 CET 2017
## 2094 Sat Jun 10 19:56:40 CEST 2017
## 2095 Thu Nov 02 17:44:55 CET 2017
## 2096 Sat Oct 13 09:50:27 CEST 2018
## 2097 Sun Oct 14 10:45:39 CEST 2018
## 2098 Sun Oct 21 08:07:41 CEST 2018
## 2099 Tue Jan 29 09:26:53 CET 2019
## 2100 Mon Mar 30 16:09:20 CEST 2020
## 2101 Thu Nov 19 15:50:59 CET 2020
## 2102 Tue Mar 15 19:52:12 CET 2016
## 2103 Thu Aug 04 10:16:39 CEST 2016
## 2104 Sat Dec 10 19:05:51 CET 2016
## 2105 Sun Mar 19 18:23:49 CET 2017
## 2106 Sat Jun 10 19:56:40 CEST 2017
## 2107 Thu Nov 02 17:44:55 CET 2017
## 2108 Sat Oct 13 09:50:27 CEST 2018
## 2109 Sun Oct 14 10:45:39 CEST 2018
## 2110 Sun Oct 21 08:07:41 CEST 2018
## 2111 Tue Jan 29 09:26:53 CET 2019
## 2112 Mon Mar 30 16:09:20 CEST 2020
## 2113 Thu Nov 19 15:50:59 CET 2020
## 2114 Tue Mar 15 19:52:12 CET 2016
## 2115 Thu Aug 04 10:16:39 CEST 2016
## 2116 Sat Dec 10 19:05:51 CET 2016
## 2117 Sun Mar 19 18:23:49 CET 2017
## 2118 Sat Jun 10 19:56:40 CEST 2017
## 2119 Thu Nov 02 17:44:55 CET 2017
## 2120 Sat Oct 13 09:50:27 CEST 2018
## 2121 Sun Oct 14 10:45:39 CEST 2018
## 2122 Sun Oct 21 08:07:41 CEST 2018
## 2123 Tue Jan 29 09:26:53 CET 2019
## 2124 Mon Mar 30 16:09:20 CEST 2020
## 2125 Thu Nov 19 15:50:59 CET 2020
## 2126 Tue Mar 15 19:52:12 CET 2016
## 2127 Thu Aug 04 10:16:39 CEST 2016
## 2128 Sat Dec 10 19:05:51 CET 2016
## 2129 Sun Mar 19 18:23:49 CET 2017
## 2130 Sat Jun 10 19:56:40 CEST 2017
## 2131 Thu Nov 02 17:44:55 CET 2017
## 2132 Sat Oct 13 09:50:27 CEST 2018
## 2133 Sun Oct 14 10:45:39 CEST 2018
## 2134 Sun Oct 21 08:07:41 CEST 2018
## 2135 Tue Jan 29 09:26:53 CET 2019
## 2136 Mon Mar 30 16:09:20 CEST 2020
## 2137 Thu Nov 19 15:50:59 CET 2020
## 2138 Tue Mar 15 19:52:12 CET 2016
## 2139 Thu Aug 04 10:16:39 CEST 2016
## 2140 Sat Dec 10 19:05:51 CET 2016
## 2141 Sun Mar 19 18:23:49 CET 2017
## 2142 Sat Jun 10 19:56:40 CEST 2017
## 2143 Thu Nov 02 17:44:55 CET 2017
## 2144 Sat Oct 13 09:50:27 CEST 2018
## 2145 Sun Oct 14 10:45:39 CEST 2018
## 2146 Sun Oct 21 08:07:41 CEST 2018
## 2147 Tue Jan 29 09:26:53 CET 2019
## 2148 Mon Mar 30 16:09:20 CEST 2020
## 2149 Thu Nov 19 15:50:59 CET 2020
## 2150 Tue Mar 15 19:52:12 CET 2016
## 2151 Thu Aug 04 10:16:39 CEST 2016
## 2152 Sat Dec 10 19:05:51 CET 2016
## 2153 Sun Mar 19 18:23:49 CET 2017
## 2154 Sat Jun 10 19:56:40 CEST 2017
## 2155 Thu Nov 02 17:44:55 CET 2017
## 2156 Sat Oct 13 09:50:27 CEST 2018
## 2157 Sun Oct 14 10:45:39 CEST 2018
## 2158 Sun Oct 21 08:07:41 CEST 2018
## 2159 Tue Jan 29 09:26:53 CET 2019
## 2160 Mon Mar 30 16:09:20 CEST 2020
## 2161 Thu Nov 19 15:50:59 CET 2020
## 2162 Tue Mar 15 19:52:12 CET 2016
## 2163 Thu Aug 04 10:16:39 CEST 2016
## 2164 Sat Dec 10 19:05:51 CET 2016
## 2165 Sun Mar 19 18:23:49 CET 2017
## 2166 Sat Jun 10 19:56:40 CEST 2017
## 2167 Thu Nov 02 17:44:55 CET 2017
## 2168 Sat Oct 13 09:50:27 CEST 2018
## 2169 Sun Oct 14 10:45:39 CEST 2018
## 2170 Sun Oct 21 08:07:41 CEST 2018
## 2171 Tue Jan 29 09:26:53 CET 2019
## 2172 Mon Mar 30 16:09:20 CEST 2020
## 2173 Thu Nov 19 15:50:59 CET 2020
## 2174 Tue Mar 15 19:52:12 CET 2016
## 2175 Thu Aug 04 10:16:39 CEST 2016
## 2176 Sat Dec 10 19:05:51 CET 2016
## 2177 Sun Mar 19 18:23:49 CET 2017
## 2178 Sat Jun 10 19:56:40 CEST 2017
## 2179 Thu Nov 02 17:44:55 CET 2017
## 2180 Sat Oct 13 09:50:27 CEST 2018
## 2181 Sun Oct 14 10:45:39 CEST 2018
## 2182 Sun Oct 21 08:07:41 CEST 2018
## 2183 Tue Jan 29 09:26:53 CET 2019
## 2184 Mon Mar 30 16:09:20 CEST 2020
## 2185 Thu Nov 19 15:50:59 CET 2020
## 2186 Tue Mar 15 19:52:12 CET 2016
## 2187 Thu Aug 04 10:16:39 CEST 2016
## 2188 Sat Dec 10 19:05:51 CET 2016
## 2189 Sun Mar 19 18:23:49 CET 2017
## 2190 Sat Jun 10 19:56:40 CEST 2017
## 2191 Thu Nov 02 17:44:55 CET 2017
## 2192 Sat Oct 13 09:50:27 CEST 2018
## 2193 Sun Oct 14 10:45:39 CEST 2018
## 2194 Sun Oct 21 08:07:41 CEST 2018
## 2195 Tue Jan 29 09:26:53 CET 2019
## 2196 Mon Mar 30 16:09:20 CEST 2020
## 2197 Thu Nov 19 15:50:59 CET 2020
## 2198 Tue Mar 15 19:52:12 CET 2016
## 2199 Thu Aug 04 10:16:39 CEST 2016
## 2200 Sat Dec 10 19:05:51 CET 2016
## 2201 Sun Mar 19 18:23:49 CET 2017
## 2202 Sat Jun 10 19:56:40 CEST 2017
## 2203 Thu Nov 02 17:44:55 CET 2017
## 2204 Sat Oct 13 09:50:27 CEST 2018
## 2205 Sun Oct 14 10:45:39 CEST 2018
## 2206 Sun Oct 21 08:07:41 CEST 2018
## 2207 Tue Jan 29 09:26:53 CET 2019
## 2208 Mon Mar 30 16:09:20 CEST 2020
## 2209 Thu Nov 19 15:50:59 CET 2020
## 2210 Tue Mar 15 19:52:12 CET 2016
## 2211 Thu Aug 04 10:16:39 CEST 2016
## 2212 Sat Dec 10 19:05:51 CET 2016
## 2213 Sun Mar 19 18:23:49 CET 2017
## 2214 Sat Jun 10 19:56:40 CEST 2017
## 2215 Thu Nov 02 17:44:55 CET 2017
## 2216 Sat Oct 13 09:50:27 CEST 2018
## 2217 Sun Oct 14 10:45:39 CEST 2018
## 2218 Sun Oct 21 08:07:41 CEST 2018
## 2219 Tue Jan 29 09:26:53 CET 2019
## 2220 Mon Mar 30 16:09:20 CEST 2020
## 2221 Thu Nov 19 15:50:59 CET 2020
## 2222 Tue Mar 15 19:52:12 CET 2016
## 2223 Thu Aug 04 10:16:39 CEST 2016
## 2224 Sat Dec 10 19:05:51 CET 2016
## 2225 Sun Mar 19 18:23:49 CET 2017
## 2226 Sat Jun 10 19:56:40 CEST 2017
## 2227 Thu Nov 02 17:44:55 CET 2017
## 2228 Sat Oct 13 09:50:27 CEST 2018
## 2229 Sun Oct 14 10:45:39 CEST 2018
## 2230 Sun Oct 21 08:07:41 CEST 2018
## 2231 Tue Jan 29 09:26:53 CET 2019
## 2232 Mon Mar 30 16:09:20 CEST 2020
## 2233 Thu Nov 19 15:50:59 CET 2020
## 2234 Tue Mar 15 19:52:12 CET 2016
## 2235 Thu Aug 04 10:16:39 CEST 2016
## 2236 Sat Dec 10 19:05:51 CET 2016
## 2237 Sun Mar 19 18:23:49 CET 2017
## 2238 Sat Jun 10 19:56:40 CEST 2017
## 2239 Thu Nov 02 17:44:55 CET 2017
## 2240 Sat Oct 13 09:50:27 CEST 2018
## 2241 Sun Oct 14 10:45:39 CEST 2018
## 2242 Sun Oct 21 08:07:41 CEST 2018
## 2243 Tue Jan 29 09:26:53 CET 2019
## 2244 Mon Mar 30 16:09:20 CEST 2020
## 2245 Thu Nov 19 15:50:59 CET 2020
## 2246 Tue Mar 15 19:52:12 CET 2016
## 2247 Thu Aug 04 10:16:39 CEST 2016
## 2248 Sat Dec 10 19:05:51 CET 2016
## 2249 Sun Mar 19 18:23:49 CET 2017
## 2250 Sat Jun 10 19:56:40 CEST 2017
## 2251 Thu Nov 02 17:44:55 CET 2017
## 2252 Sat Oct 13 09:50:27 CEST 2018
## 2253 Sun Oct 14 10:45:39 CEST 2018
## 2254 Sun Oct 21 08:07:41 CEST 2018
## 2255 Tue Jan 29 09:26:53 CET 2019
## 2256 Mon Mar 30 16:09:20 CEST 2020
## 2257 Thu Nov 19 15:50:59 CET 2020
## 2258 Tue Mar 15 19:52:12 CET 2016
## 2259 Thu Aug 04 10:16:39 CEST 2016
## 2260 Sat Dec 10 19:05:51 CET 2016
## 2261 Sun Mar 19 18:23:49 CET 2017
## 2262 Sat Jun 10 19:56:40 CEST 2017
## 2263 Thu Nov 02 17:44:55 CET 2017
## 2264 Sat Oct 13 09:50:27 CEST 2018
## 2265 Sun Oct 14 10:45:39 CEST 2018
## 2266 Sun Oct 21 08:07:41 CEST 2018
## 2267 Tue Jan 29 09:26:53 CET 2019
## 2268 Mon Mar 30 16:09:20 CEST 2020
## 2269 Thu Nov 19 15:50:59 CET 2020
## 2270 Tue Mar 15 19:52:12 CET 2016
## 2271 Thu Aug 04 10:16:39 CEST 2016
## 2272 Sat Dec 10 19:05:51 CET 2016
## 2273 Sun Mar 19 18:23:49 CET 2017
## 2274 Sat Jun 10 19:56:40 CEST 2017
## 2275 Thu Nov 02 17:44:55 CET 2017
## 2276 Sat Oct 13 09:50:27 CEST 2018
## 2277 Sun Oct 14 10:45:39 CEST 2018
## 2278 Sun Oct 21 08:07:41 CEST 2018
## 2279 Tue Jan 29 09:26:53 CET 2019
## 2280 Mon Mar 30 16:09:20 CEST 2020
## 2281 Thu Nov 19 15:50:59 CET 2020
## 2282 Tue Mar 15 19:52:12 CET 2016
## 2283 Thu Aug 04 10:16:39 CEST 2016
## 2284 Sat Dec 10 19:05:51 CET 2016
## 2285 Sun Mar 19 18:23:49 CET 2017
## 2286 Sat Jun 10 19:56:40 CEST 2017
## 2287 Thu Nov 02 17:44:55 CET 2017
## 2288 Sat Oct 13 09:50:27 CEST 2018
## 2289 Sun Oct 14 10:45:39 CEST 2018
## 2290 Sun Oct 21 08:07:41 CEST 2018
## 2291 Tue Jan 29 09:26:53 CET 2019
## 2292 Mon Mar 30 16:09:20 CEST 2020
## 2293 Thu Nov 19 15:50:59 CET 2020
## 2294 Tue Mar 15 19:52:12 CET 2016
## 2295 Thu Aug 04 10:16:39 CEST 2016
## 2296 Sat Dec 10 19:05:51 CET 2016
## 2297 Sun Mar 19 18:23:49 CET 2017
## 2298 Sat Jun 10 19:56:40 CEST 2017
## 2299 Thu Nov 02 17:44:55 CET 2017
## 2300 Sat Oct 13 09:50:27 CEST 2018
## 2301 Sun Oct 14 10:45:39 CEST 2018
## 2302 Sun Oct 21 08:07:41 CEST 2018
## 2303 Tue Jan 29 09:26:53 CET 2019
## 2304 Mon Mar 30 16:09:20 CEST 2020
## 2305 Thu Nov 19 15:50:59 CET 2020
## 2306 Tue Mar 15 19:52:12 CET 2016
## 2307 Thu Aug 04 10:16:39 CEST 2016
## 2308 Sat Dec 10 19:05:51 CET 2016
## 2309 Sun Mar 19 18:23:49 CET 2017
## 2310 Sat Jun 10 19:56:40 CEST 2017
## 2311 Thu Nov 02 17:44:55 CET 2017
## 2312 Sat Oct 13 09:50:27 CEST 2018
## 2313 Sun Oct 14 10:45:39 CEST 2018
## 2314 Sun Oct 21 08:07:41 CEST 2018
## 2315 Tue Jan 29 09:26:53 CET 2019
## 2316 Mon Mar 30 16:09:20 CEST 2020
## 2317 Thu Nov 19 15:50:59 CET 2020
## 2318 Tue Mar 15 19:52:12 CET 2016
## 2319 Thu Aug 04 10:16:39 CEST 2016
## 2320 Sat Dec 10 19:05:51 CET 2016
## 2321 Sun Mar 19 18:23:49 CET 2017
## 2322 Sat Jun 10 19:56:40 CEST 2017
## 2323 Thu Nov 02 17:44:55 CET 2017
## 2324 Sat Oct 13 09:50:27 CEST 2018
## 2325 Sun Oct 14 10:45:39 CEST 2018
## 2326 Sun Oct 21 08:07:41 CEST 2018
## 2327 Tue Jan 29 09:26:53 CET 2019
## 2328 Mon Mar 30 16:09:20 CEST 2020
## 2329 Thu Nov 19 15:50:59 CET 2020
## 2330 Tue Mar 15 19:52:12 CET 2016
## 2331 Thu Aug 04 10:16:39 CEST 2016
## 2332 Sat Dec 10 19:05:51 CET 2016
## 2333 Sun Mar 19 18:23:49 CET 2017
## 2334 Sat Jun 10 19:56:40 CEST 2017
## 2335 Thu Nov 02 17:44:55 CET 2017
## 2336 Sat Oct 13 09:50:27 CEST 2018
## 2337 Sun Oct 14 10:45:39 CEST 2018
## 2338 Sun Oct 21 08:07:41 CEST 2018
## 2339 Tue Jan 29 09:26:53 CET 2019
## 2340 Mon Mar 30 16:09:20 CEST 2020
## 2341 Thu Nov 19 15:50:59 CET 2020
## 2342 Tue Mar 15 19:52:12 CET 2016
## 2343 Thu Aug 04 10:16:39 CEST 2016
## 2344 Sat Dec 10 19:05:51 CET 2016
## 2345 Sun Mar 19 18:23:49 CET 2017
## 2346 Sat Jun 10 19:56:40 CEST 2017
## 2347 Thu Nov 02 17:44:55 CET 2017
## 2348 Sat Oct 13 09:50:27 CEST 2018
## 2349 Sun Oct 14 10:45:39 CEST 2018
## 2350 Sun Oct 21 08:07:41 CEST 2018
## 2351 Tue Jan 29 09:26:53 CET 2019
## 2352 Mon Mar 30 16:09:20 CEST 2020
## 2353 Thu Nov 19 15:50:59 CET 2020
## 2354 Tue Mar 15 19:52:12 CET 2016
## 2355 Thu Aug 04 10:16:39 CEST 2016
## 2356 Sat Dec 10 19:05:51 CET 2016
## 2357 Sun Mar 19 18:23:49 CET 2017
## 2358 Sat Jun 10 19:56:40 CEST 2017
## 2359 Thu Nov 02 17:44:55 CET 2017
## 2360 Sat Oct 13 09:50:27 CEST 2018
## 2361 Sun Oct 14 10:45:39 CEST 2018
## 2362 Sun Oct 21 08:07:41 CEST 2018
## 2363 Tue Jan 29 09:26:53 CET 2019
## 2364 Mon Mar 30 16:09:20 CEST 2020
## 2365 Thu Nov 19 15:50:59 CET 2020
## 2366 Tue Mar 15 19:52:12 CET 2016
## 2367 Thu Aug 04 10:16:39 CEST 2016
## 2368 Sat Dec 10 19:05:51 CET 2016
## 2369 Sun Mar 19 18:23:49 CET 2017
## 2370 Sat Jun 10 19:56:40 CEST 2017
## 2371 Thu Nov 02 17:44:55 CET 2017
## 2372 Sat Oct 13 09:50:27 CEST 2018
## 2373 Sun Oct 14 10:45:39 CEST 2018
## 2374 Sun Oct 21 08:07:41 CEST 2018
## 2375 Tue Jan 29 09:26:53 CET 2019
## 2376 Mon Mar 30 16:09:20 CEST 2020
## 2377 Thu Nov 19 15:50:59 CET 2020
## 2378 Tue Mar 15 19:52:12 CET 2016
## 2379 Thu Aug 04 10:16:39 CEST 2016
## 2380 Sat Dec 10 19:05:51 CET 2016
## 2381 Sun Mar 19 18:23:49 CET 2017
## 2382 Sat Jun 10 19:56:40 CEST 2017
## 2383 Thu Nov 02 17:44:55 CET 2017
## 2384 Sat Oct 13 09:50:27 CEST 2018
## 2385 Sun Oct 14 10:45:39 CEST 2018
## 2386 Sun Oct 21 08:07:41 CEST 2018
## 2387 Tue Jan 29 09:26:53 CET 2019
## 2388 Mon Mar 30 16:09:20 CEST 2020
## 2389 Thu Nov 19 15:50:59 CET 2020
## 2390 Tue Mar 15 19:52:12 CET 2016
## 2391 Thu Aug 04 10:16:39 CEST 2016
## 2392 Sat Dec 10 19:05:51 CET 2016
## 2393 Sun Mar 19 18:23:49 CET 2017
## 2394 Sat Jun 10 19:56:40 CEST 2017
## 2395 Thu Nov 02 17:44:55 CET 2017
## 2396 Sat Oct 13 09:50:27 CEST 2018
## 2397 Sun Oct 14 10:45:39 CEST 2018
## 2398 Sun Oct 21 08:07:41 CEST 2018
## 2399 Tue Jan 29 09:26:53 CET 2019
## 2400 Mon Mar 30 16:09:20 CEST 2020
## 2401 Thu Nov 19 15:50:59 CET 2020
## 2402 Tue Mar 15 19:52:12 CET 2016
## 2403 Thu Aug 04 10:16:39 CEST 2016
## 2404 Sat Dec 10 19:05:51 CET 2016
## 2405 Sun Mar 19 18:23:49 CET 2017
## 2406 Sat Jun 10 19:56:40 CEST 2017
## 2407 Thu Nov 02 17:44:55 CET 2017
## 2408 Sat Oct 13 09:50:27 CEST 2018
## 2409 Sun Oct 14 10:45:39 CEST 2018
## 2410 Sun Oct 21 08:07:41 CEST 2018
## 2411 Tue Jan 29 09:26:53 CET 2019
## 2412 Mon Mar 30 16:09:20 CEST 2020
## 2413 Thu Nov 19 15:50:59 CET 2020
## 2414 Tue Mar 15 19:52:12 CET 2016
## 2415 Thu Aug 04 10:16:39 CEST 2016
## 2416 Sat Dec 10 19:05:51 CET 2016
## 2417 Sun Mar 19 18:23:49 CET 2017
## 2418 Sat Jun 10 19:56:40 CEST 2017
## 2419 Thu Nov 02 17:44:55 CET 2017
## 2420 Sat Oct 13 09:50:27 CEST 2018
## 2421 Sun Oct 14 10:45:39 CEST 2018
## 2422 Sun Oct 21 08:07:41 CEST 2018
## 2423 Tue Jan 29 09:26:53 CET 2019
## 2424 Mon Mar 30 16:09:20 CEST 2020
## 2425 Thu Nov 19 15:50:59 CET 2020
## 2426 Tue Mar 15 19:52:12 CET 2016
## 2427 Thu Aug 04 10:16:39 CEST 2016
## 2428 Sat Dec 10 19:05:51 CET 2016
## 2429 Sun Mar 19 18:23:49 CET 2017
## 2430 Sat Jun 10 19:56:40 CEST 2017
## 2431 Thu Nov 02 17:44:55 CET 2017
## 2432 Sat Oct 13 09:50:27 CEST 2018
## 2433 Sun Oct 14 10:45:39 CEST 2018
## 2434 Sun Oct 21 08:07:41 CEST 2018
## 2435 Tue Jan 29 09:26:53 CET 2019
## 2436 Mon Mar 30 16:09:20 CEST 2020
## 2437 Thu Nov 19 15:50:59 CET 2020
## 2438 Tue Mar 15 19:52:12 CET 2016
## 2439 Thu Aug 04 10:16:39 CEST 2016
## 2440 Sat Dec 10 19:05:51 CET 2016
## 2441 Sun Mar 19 18:23:49 CET 2017
## 2442 Sat Jun 10 19:56:40 CEST 2017
## 2443 Thu Nov 02 17:44:55 CET 2017
## 2444 Sat Oct 13 09:50:27 CEST 2018
## 2445 Sun Oct 14 10:45:39 CEST 2018
## 2446 Sun Oct 21 08:07:41 CEST 2018
## 2447 Tue Jan 29 09:26:53 CET 2019
## 2448 Mon Mar 30 16:09:20 CEST 2020
## 2449 Thu Nov 19 15:50:59 CET 2020
## 2450 Tue Mar 15 19:52:12 CET 2016
## 2451 Thu Aug 04 10:16:39 CEST 2016
## 2452 Sat Dec 10 19:05:51 CET 2016
## 2453 Sun Mar 19 18:23:49 CET 2017
## 2454 Sat Jun 10 19:56:40 CEST 2017
## 2455 Thu Nov 02 17:44:55 CET 2017
## 2456 Sat Oct 13 09:50:27 CEST 2018
## 2457 Sun Oct 14 10:45:39 CEST 2018
## 2458 Sun Oct 21 08:07:41 CEST 2018
## 2459 Tue Jan 29 09:26:53 CET 2019
## 2460 Mon Mar 30 16:09:20 CEST 2020
## 2461 Thu Nov 19 15:50:59 CET 2020
## 2462 Tue Mar 15 19:52:12 CET 2016
## 2463 Thu Aug 04 10:16:39 CEST 2016
## 2464 Sat Dec 10 19:05:51 CET 2016
## 2465 Sun Mar 19 18:23:49 CET 2017
## 2466 Sat Jun 10 19:56:40 CEST 2017
## 2467 Thu Nov 02 17:44:55 CET 2017
## 2468 Sat Oct 13 09:50:27 CEST 2018
## 2469 Sun Oct 14 10:45:39 CEST 2018
## 2470 Sun Oct 21 08:07:41 CEST 2018
## 2471 Tue Jan 29 09:26:53 CET 2019
## 2472 Mon Mar 30 16:09:20 CEST 2020
## 2473 Thu Nov 19 15:50:59 CET 2020
## 2474 Tue Mar 15 19:52:12 CET 2016
## 2475 Thu Aug 04 10:16:39 CEST 2016
## 2476 Sat Dec 10 19:05:51 CET 2016
## 2477 Sun Mar 19 18:23:49 CET 2017
## 2478 Sat Jun 10 19:56:40 CEST 2017
## 2479 Thu Nov 02 17:44:55 CET 2017
## 2480 Sat Oct 13 09:50:27 CEST 2018
## 2481 Sun Oct 14 10:45:39 CEST 2018
## 2482 Sun Oct 21 08:07:41 CEST 2018
## 2483 Tue Jan 29 09:26:53 CET 2019
## 2484 Mon Mar 30 16:09:20 CEST 2020
## 2485 Thu Nov 19 15:50:59 CET 2020
## 2486 Tue Mar 15 19:52:12 CET 2016
## 2487 Thu Aug 04 10:16:39 CEST 2016
## 2488 Sat Dec 10 19:05:51 CET 2016
## 2489 Sun Mar 19 18:23:49 CET 2017
## 2490 Sat Jun 10 19:56:40 CEST 2017
## 2491 Thu Nov 02 17:44:55 CET 2017
## 2492 Sat Oct 13 09:50:27 CEST 2018
## 2493 Sun Oct 14 10:45:39 CEST 2018
## 2494 Sun Oct 21 08:07:41 CEST 2018
## 2495 Tue Jan 29 09:26:53 CET 2019
## 2496 Mon Mar 30 16:09:20 CEST 2020
## 2497 Thu Nov 19 15:50:59 CET 2020
## 2498 Tue Mar 15 19:52:12 CET 2016
## 2499 Thu Aug 04 10:16:39 CEST 2016
## 2500 Sat Dec 10 19:05:51 CET 2016
## 2501 Sun Mar 19 18:23:49 CET 2017
## 2502 Sat Jun 10 19:56:40 CEST 2017
## 2503 Thu Nov 02 17:44:55 CET 2017
## 2504 Sat Oct 13 09:50:27 CEST 2018
## 2505 Sun Oct 14 10:45:39 CEST 2018
## 2506 Sun Oct 21 08:07:41 CEST 2018
## 2507 Tue Jan 29 09:26:53 CET 2019
## 2508 Mon Mar 30 16:09:20 CEST 2020
## 2509 Thu Nov 19 15:50:59 CET 2020
## 2510 Sat Dec 10 19:05:51 CET 2016
## 2511 Sun Mar 19 18:23:49 CET 2017
## 2512 Sat Jun 10 19:56:40 CEST 2017
## 2513 Thu Nov 02 17:44:55 CET 2017
## 2514 Sat Oct 13 09:50:27 CEST 2018
## 2515 Sun Oct 14 10:45:39 CEST 2018
## 2516 Sun Oct 21 08:07:41 CEST 2018
## 2517 Tue Jan 29 09:26:53 CET 2019
## 2518 Mon Mar 30 16:09:20 CEST 2020
## 2519 Thu Nov 19 15:50:59 CET 2020
## 2520 Tue Mar 15 19:52:12 CET 2016
## 2521 Thu Aug 04 10:16:39 CEST 2016
## 2522 Sat Dec 10 19:05:51 CET 2016
## 2523 Sun Mar 19 18:23:49 CET 2017
## 2524 Sat Jun 10 19:56:40 CEST 2017
## 2525 Thu Nov 02 17:44:55 CET 2017
## 2526 Sat Oct 13 09:50:27 CEST 2018
## 2527 Sun Oct 14 10:45:39 CEST 2018
## 2528 Sun Oct 21 08:07:41 CEST 2018
## 2529 Tue Jan 29 09:26:53 CET 2019
## 2530 Mon Mar 30 16:09:20 CEST 2020
## 2531 Thu Nov 19 15:50:59 CET 2020
## 2532 Sat Dec 10 19:05:51 CET 2016
## 2533 Sun Mar 19 18:23:49 CET 2017
## 2534 Sat Jun 10 19:56:40 CEST 2017
## 2535 Thu Nov 02 17:44:55 CET 2017
## 2536 Sat Oct 13 09:50:27 CEST 2018
## 2537 Sun Oct 14 10:45:39 CEST 2018
## 2538 Sun Oct 21 08:07:41 CEST 2018
## 2539 Tue Jan 29 09:26:53 CET 2019
## 2540 Mon Mar 30 16:09:20 CEST 2020
## 2541 Thu Nov 19 15:50:59 CET 2020
## 2542 Tue Mar 15 19:52:12 CET 2016
## 2543 Thu Aug 04 10:16:39 CEST 2016
## 2544 Sat Dec 10 19:05:51 CET 2016
## 2545 Sun Mar 19 18:23:49 CET 2017
## 2546 Sat Jun 10 19:56:40 CEST 2017
## 2547 Thu Nov 02 17:44:55 CET 2017
## 2548 Sat Oct 13 09:50:27 CEST 2018
## 2549 Sun Oct 14 10:45:39 CEST 2018
## 2550 Sun Oct 21 08:07:41 CEST 2018
## 2551 Tue Jan 29 09:26:53 CET 2019
## 2552 Mon Mar 30 16:09:20 CEST 2020
## 2553 Thu Nov 19 15:50:59 CET 2020
## 2554 Tue Mar 15 19:52:12 CET 2016
## 2555 Thu Aug 04 10:16:39 CEST 2016
## 2556 Sat Dec 10 19:05:51 CET 2016
## 2557 Sun Mar 19 18:23:49 CET 2017
## 2558 Sat Jun 10 19:56:40 CEST 2017
## 2559 Thu Nov 02 17:44:55 CET 2017
## 2560 Sat Oct 13 09:50:27 CEST 2018
## 2561 Sun Oct 14 10:45:39 CEST 2018
## 2562 Sun Oct 21 08:07:41 CEST 2018
## 2563 Tue Jan 29 09:26:53 CET 2019
## 2564 Mon Mar 30 16:09:20 CEST 2020
## 2565 Thu Nov 19 15:50:59 CET 2020
## 2566 Sat Dec 10 19:05:51 CET 2016
## 2567 Sun Mar 19 18:23:49 CET 2017
## 2568 Sat Jun 10 19:56:40 CEST 2017
## 2569 Thu Nov 02 17:44:55 CET 2017
## 2570 Sat Oct 13 09:50:27 CEST 2018
## 2571 Sun Oct 14 10:45:39 CEST 2018
## 2572 Sun Oct 21 08:07:41 CEST 2018
## 2573 Tue Jan 29 09:26:53 CET 2019
## 2574 Mon Mar 30 16:09:20 CEST 2020
## 2575 Thu Nov 19 15:50:59 CET 2020
## 2576 Sat Dec 10 19:05:51 CET 2016
## 2577 Sun Mar 19 18:23:49 CET 2017
## 2578 Sat Jun 10 19:56:40 CEST 2017
## 2579 Thu Nov 02 17:44:55 CET 2017
## 2580 Sat Oct 13 09:50:27 CEST 2018
## 2581 Sun Oct 14 10:45:39 CEST 2018
## 2582 Sun Oct 21 08:07:41 CEST 2018
## 2583 Tue Jan 29 09:26:53 CET 2019
## 2584 Mon Mar 30 16:09:20 CEST 2020
## 2585 Thu Nov 19 15:50:59 CET 2020
## 2586 Tue Mar 15 19:52:12 CET 2016
## 2587 Thu Aug 04 10:16:39 CEST 2016
## 2588 Sat Dec 10 19:05:51 CET 2016
## 2589 Sun Mar 19 18:23:49 CET 2017
## 2590 Sat Jun 10 19:56:40 CEST 2017
## 2591 Thu Nov 02 17:44:55 CET 2017
## 2592 Sat Oct 13 09:50:27 CEST 2018
## 2593 Sun Oct 14 10:45:39 CEST 2018
## 2594 Sun Oct 21 08:07:41 CEST 2018
## 2595 Tue Jan 29 09:26:53 CET 2019
## 2596 Mon Mar 30 16:09:20 CEST 2020
## 2597 Thu Nov 19 15:50:59 CET 2020
## 2598 Tue Mar 15 19:52:12 CET 2016
## 2599 Thu Aug 04 10:16:39 CEST 2016
## 2600 Sat Dec 10 19:05:51 CET 2016
## 2601 Sun Mar 19 18:23:49 CET 2017
## 2602 Sat Jun 10 19:56:40 CEST 2017
## 2603 Thu Nov 02 17:44:55 CET 2017
## 2604 Sat Oct 13 09:50:27 CEST 2018
## 2605 Sun Oct 14 10:45:39 CEST 2018
## 2606 Sun Oct 21 08:07:41 CEST 2018
## 2607 Tue Jan 29 09:26:53 CET 2019
## 2608 Mon Mar 30 16:09:20 CEST 2020
## 2609 Thu Nov 19 15:50:59 CET 2020
## 2610 Tue Mar 15 19:52:12 CET 2016
## 2611 Thu Aug 04 10:16:39 CEST 2016
## 2612 Sat Dec 10 19:05:51 CET 2016
## 2613 Sun Mar 19 18:23:49 CET 2017
## 2614 Sat Jun 10 19:56:40 CEST 2017
## 2615 Thu Nov 02 17:44:55 CET 2017
## 2616 Sat Oct 13 09:50:27 CEST 2018
## 2617 Sun Oct 14 10:45:39 CEST 2018
## 2618 Sun Oct 21 08:07:41 CEST 2018
## 2619 Tue Jan 29 09:26:53 CET 2019
## 2620 Mon Mar 30 16:09:20 CEST 2020
## 2621 Thu Nov 19 15:50:59 CET 2020
## 2622 Tue Mar 15 19:52:12 CET 2016
## 2623 Thu Aug 04 10:16:39 CEST 2016
## 2624 Sat Dec 10 19:05:51 CET 2016
## 2625 Sun Mar 19 18:23:49 CET 2017
## 2626 Sat Jun 10 19:56:40 CEST 2017
## 2627 Thu Nov 02 17:44:55 CET 2017
## 2628 Sat Oct 13 09:50:27 CEST 2018
## 2629 Sun Oct 14 10:45:39 CEST 2018
## 2630 Sun Oct 21 08:07:41 CEST 2018
## 2631 Tue Jan 29 09:26:53 CET 2019
## 2632 Mon Mar 30 16:09:20 CEST 2020
## 2633 Thu Nov 19 15:50:59 CET 2020
## 2634 Tue Mar 15 19:52:12 CET 2016
## 2635 Thu Aug 04 10:16:39 CEST 2016
## 2636 Sat Dec 10 19:05:51 CET 2016
## 2637 Sun Mar 19 18:23:49 CET 2017
## 2638 Sat Jun 10 19:56:40 CEST 2017
## 2639 Thu Nov 02 17:44:55 CET 2017
## 2640 Sat Oct 13 09:50:27 CEST 2018
## 2641 Sun Oct 14 10:45:39 CEST 2018
## 2642 Sun Oct 21 08:07:41 CEST 2018
## 2643 Tue Jan 29 09:26:53 CET 2019
## 2644 Mon Mar 30 16:09:20 CEST 2020
## 2645 Thu Nov 19 15:50:59 CET 2020
## 2646 Tue Mar 15 19:52:12 CET 2016
## 2647 Thu Aug 04 10:16:39 CEST 2016
## 2648 Sat Dec 10 19:05:51 CET 2016
## 2649 Sun Mar 19 18:23:49 CET 2017
## 2650 Sat Jun 10 19:56:40 CEST 2017
## 2651 Thu Nov 02 17:44:55 CET 2017
## 2652 Sat Oct 13 09:50:27 CEST 2018
## 2653 Sun Oct 14 10:45:39 CEST 2018
## 2654 Sun Oct 21 08:07:41 CEST 2018
## 2655 Tue Jan 29 09:26:53 CET 2019
## 2656 Mon Mar 30 16:09:20 CEST 2020
## 2657 Thu Nov 19 15:50:59 CET 2020
## 2658 Tue Mar 15 19:52:12 CET 2016
## 2659 Thu Aug 04 10:16:39 CEST 2016
## 2660 Sat Dec 10 19:05:51 CET 2016
## 2661 Sun Mar 19 18:23:49 CET 2017
## 2662 Sat Jun 10 19:56:40 CEST 2017
## 2663 Thu Nov 02 17:44:55 CET 2017
## 2664 Sat Oct 13 09:50:27 CEST 2018
## 2665 Sun Oct 14 10:45:39 CEST 2018
## 2666 Sun Oct 21 08:07:41 CEST 2018
## 2667 Tue Jan 29 09:26:53 CET 2019
## 2668 Mon Mar 30 16:09:20 CEST 2020
## 2669 Thu Nov 19 15:50:59 CET 2020
## 2670 Tue Mar 15 19:52:12 CET 2016
## 2671 Thu Aug 04 10:16:39 CEST 2016
## 2672 Sat Dec 10 19:05:51 CET 2016
## 2673 Sun Mar 19 18:23:49 CET 2017
## 2674 Sat Jun 10 19:56:40 CEST 2017
## 2675 Thu Nov 02 17:44:55 CET 2017
## 2676 Sat Oct 13 09:50:27 CEST 2018
## 2677 Sun Oct 14 10:45:39 CEST 2018
## 2678 Sun Oct 21 08:07:41 CEST 2018
## 2679 Tue Jan 29 09:26:53 CET 2019
## 2680 Mon Mar 30 16:09:20 CEST 2020
## 2681 Thu Nov 19 15:50:59 CET 2020
## 2682 Tue Mar 15 19:52:12 CET 2016
## 2683 Thu Aug 04 10:16:39 CEST 2016
## 2684 Sat Dec 10 19:05:51 CET 2016
## 2685 Sun Mar 19 18:23:49 CET 2017
## 2686 Sat Jun 10 19:56:40 CEST 2017
## 2687 Thu Nov 02 17:44:55 CET 2017
## 2688 Sat Oct 13 09:50:27 CEST 2018
## 2689 Sun Oct 14 10:45:39 CEST 2018
## 2690 Sun Oct 21 08:07:41 CEST 2018
## 2691 Tue Jan 29 09:26:53 CET 2019
## 2692 Mon Mar 30 16:09:20 CEST 2020
## 2693 Thu Nov 19 15:50:59 CET 2020
## 2694 Tue Mar 15 19:52:12 CET 2016
## 2695 Thu Aug 04 10:16:39 CEST 2016
## 2696 Sat Dec 10 19:05:51 CET 2016
## 2697 Sun Mar 19 18:23:49 CET 2017
## 2698 Sat Jun 10 19:56:40 CEST 2017
## 2699 Thu Nov 02 17:44:55 CET 2017
## 2700 Sat Oct 13 09:50:27 CEST 2018
## 2701 Sun Oct 14 10:45:39 CEST 2018
## 2702 Sun Oct 21 08:07:41 CEST 2018
## 2703 Tue Jan 29 09:26:53 CET 2019
## 2704 Mon Mar 30 16:09:20 CEST 2020
## 2705 Thu Nov 19 15:50:59 CET 2020
## 2706 Tue Mar 15 19:52:12 CET 2016
## 2707 Thu Aug 04 10:16:39 CEST 2016
## 2708 Sat Dec 10 19:05:51 CET 2016
## 2709 Sun Mar 19 18:23:49 CET 2017
## 2710 Sat Jun 10 19:56:40 CEST 2017
## 2711 Thu Nov 02 17:44:55 CET 2017
## 2712 Sat Oct 13 09:50:27 CEST 2018
## 2713 Sun Oct 14 10:45:39 CEST 2018
## 2714 Sun Oct 21 08:07:41 CEST 2018
## 2715 Tue Jan 29 09:26:53 CET 2019
## 2716 Mon Mar 30 16:09:20 CEST 2020
## 2717 Thu Nov 19 15:50:59 CET 2020
## 2718 Tue Mar 15 19:52:12 CET 2016
## 2719 Thu Aug 04 10:16:39 CEST 2016
## 2720 Sat Dec 10 19:05:51 CET 2016
## 2721 Sun Mar 19 18:23:49 CET 2017
## 2722 Sat Jun 10 19:56:40 CEST 2017
## 2723 Thu Nov 02 17:44:55 CET 2017
## 2724 Sat Oct 13 09:50:27 CEST 2018
## 2725 Sun Oct 14 10:45:39 CEST 2018
## 2726 Sun Oct 21 08:07:41 CEST 2018
## 2727 Tue Jan 29 09:26:53 CET 2019
## 2728 Mon Mar 30 16:09:20 CEST 2020
## 2729 Thu Nov 19 15:50:59 CET 2020
## 2730 Sat May 09 12:08:19 CEST 2015
## 2731 Fri Jul 10 00:25:11 CEST 2015
## 2732 Tue Mar 15 19:52:12 CET 2016
## 2733 Thu Aug 04 10:16:39 CEST 2016
## 2734 Sat Dec 10 19:05:51 CET 2016
## 2735 Sun Mar 19 18:23:49 CET 2017
## 2736 Sat Jun 10 19:56:40 CEST 2017
## 2737 Thu Nov 02 17:44:55 CET 2017
## 2738 Sat Oct 13 09:50:27 CEST 2018
## 2739 Sun Oct 14 10:45:39 CEST 2018
## 2740 Sun Oct 21 08:07:41 CEST 2018
## 2741 Tue Jan 29 09:26:53 CET 2019
## 2742 Mon Mar 30 16:09:20 CEST 2020
## 2743 Thu Nov 19 15:50:59 CET 2020
## 2744 Sat May 09 12:08:19 CEST 2015
## 2745 Fri Jul 10 00:25:11 CEST 2015
## 2746 Tue Mar 15 19:52:12 CET 2016
## 2747 Thu Aug 04 10:16:39 CEST 2016
## 2748 Sat Dec 10 19:05:51 CET 2016
## 2749 Sun Mar 19 18:23:49 CET 2017
## 2750 Sat Jun 10 19:56:40 CEST 2017
## 2751 Thu Nov 02 17:44:55 CET 2017
## 2752 Sat Oct 13 09:50:27 CEST 2018
## 2753 Sun Oct 14 10:45:39 CEST 2018
## 2754 Sun Oct 21 08:07:41 CEST 2018
## 2755 Tue Jan 29 09:26:53 CET 2019
## 2756 Mon Mar 30 16:09:20 CEST 2020
## 2757 Thu Nov 19 15:50:59 CET 2020
## 2758 Tue Mar 15 19:52:12 CET 2016
## 2759 Thu Aug 04 10:16:39 CEST 2016
## 2760 Sat Dec 10 19:05:51 CET 2016
## 2761 Sun Mar 19 18:23:49 CET 2017
## 2762 Sat Jun 10 19:56:40 CEST 2017
## 2763 Thu Nov 02 17:44:55 CET 2017
## 2764 Sat Oct 13 09:50:27 CEST 2018
## 2765 Sun Oct 14 10:45:39 CEST 2018
## 2766 Sun Oct 21 08:07:41 CEST 2018
## 2767 Tue Jan 29 09:26:53 CET 2019
## 2768 Mon Mar 30 16:09:20 CEST 2020
## 2769 Thu Nov 19 15:50:59 CET 2020
## 2770 Tue Mar 15 19:52:12 CET 2016
## 2771 Thu Aug 04 10:16:39 CEST 2016
## 2772 Sat Dec 10 19:05:51 CET 2016
## 2773 Sun Mar 19 18:23:49 CET 2017
## 2774 Sat Jun 10 19:56:40 CEST 2017
## 2775 Thu Nov 02 17:44:55 CET 2017
## 2776 Sat Oct 13 09:50:27 CEST 2018
## 2777 Sun Oct 14 10:45:39 CEST 2018
## 2778 Sun Oct 21 08:07:41 CEST 2018
## 2779 Tue Jan 29 09:26:53 CET 2019
## 2780 Mon Mar 30 16:09:20 CEST 2020
## 2781 Thu Nov 19 15:50:59 CET 2020
## 2782 Tue Mar 15 19:52:12 CET 2016
## 2783 Thu Aug 04 10:16:39 CEST 2016
## 2784 Sat Dec 10 19:05:51 CET 2016
## 2785 Sun Mar 19 18:23:49 CET 2017
## 2786 Sat Jun 10 19:56:40 CEST 2017
## 2787 Thu Nov 02 17:44:55 CET 2017
## 2788 Sat Oct 13 09:50:27 CEST 2018
## 2789 Sun Oct 14 10:45:39 CEST 2018
## 2790 Sun Oct 21 08:07:41 CEST 2018
## 2791 Tue Jan 29 09:26:53 CET 2019
## 2792 Mon Mar 30 16:09:20 CEST 2020
## 2793 Thu Nov 19 15:50:59 CET 2020
## 2794 Tue Mar 15 19:52:12 CET 2016
## 2795 Thu Aug 04 10:16:39 CEST 2016
## 2796 Sat Dec 10 19:05:51 CET 2016
## 2797 Sun Mar 19 18:23:49 CET 2017
## 2798 Sat Jun 10 19:56:40 CEST 2017
## 2799 Thu Nov 02 17:44:55 CET 2017
## 2800 Sat Oct 13 09:50:27 CEST 2018
## 2801 Sun Oct 14 10:45:39 CEST 2018
## 2802 Sun Oct 21 08:07:41 CEST 2018
## 2803 Tue Jan 29 09:26:53 CET 2019
## 2804 Mon Mar 30 16:09:20 CEST 2020
## 2805 Thu Nov 19 15:50:59 CET 2020
## 2806 Tue Mar 15 19:52:12 CET 2016
## 2807 Thu Aug 04 10:16:39 CEST 2016
## 2808 Sat Dec 10 19:05:51 CET 2016
## 2809 Sun Mar 19 18:23:49 CET 2017
## 2810 Sat Jun 10 19:56:40 CEST 2017
## 2811 Thu Nov 02 17:44:55 CET 2017
## 2812 Sat Oct 13 09:50:27 CEST 2018
## 2813 Sun Oct 14 10:45:39 CEST 2018
## 2814 Sun Oct 21 08:07:41 CEST 2018
## 2815 Tue Jan 29 09:26:53 CET 2019
## 2816 Mon Mar 30 16:09:20 CEST 2020
## 2817 Thu Nov 19 15:50:59 CET 2020
## 2818 Tue Mar 15 19:52:12 CET 2016
## 2819 Thu Aug 04 10:16:39 CEST 2016
## 2820 Sat Dec 10 19:05:51 CET 2016
## 2821 Sun Mar 19 18:23:49 CET 2017
## 2822 Sat Jun 10 19:56:40 CEST 2017
## 2823 Thu Nov 02 17:44:55 CET 2017
## 2824 Sat Oct 13 09:50:27 CEST 2018
## 2825 Sun Oct 14 10:45:39 CEST 2018
## 2826 Sun Oct 21 08:07:41 CEST 2018
## 2827 Tue Jan 29 09:26:53 CET 2019
## 2828 Mon Mar 30 16:09:20 CEST 2020
## 2829 Thu Nov 19 15:50:59 CET 2020
## 2830 Tue Mar 15 19:52:12 CET 2016
## 2831 Thu Aug 04 10:16:39 CEST 2016
## 2832 Sat Dec 10 19:05:51 CET 2016
## 2833 Sun Mar 19 18:23:49 CET 2017
## 2834 Sat Jun 10 19:56:40 CEST 2017
## 2835 Thu Nov 02 17:44:55 CET 2017
## 2836 Sat Oct 13 09:50:27 CEST 2018
## 2837 Sun Oct 14 10:45:39 CEST 2018
## 2838 Sun Oct 21 08:07:41 CEST 2018
## 2839 Tue Jan 29 09:26:53 CET 2019
## 2840 Mon Mar 30 16:09:20 CEST 2020
## 2841 Thu Nov 19 15:50:59 CET 2020
## 2842 Tue Mar 15 19:52:12 CET 2016
## 2843 Thu Aug 04 10:16:39 CEST 2016
## 2844 Sat Dec 10 19:05:51 CET 2016
## 2845 Sun Mar 19 18:23:49 CET 2017
## 2846 Sat Jun 10 19:56:40 CEST 2017
## 2847 Thu Nov 02 17:44:55 CET 2017
## 2848 Sat Oct 13 09:50:27 CEST 2018
## 2849 Sun Oct 14 10:45:39 CEST 2018
## 2850 Sun Oct 21 08:07:41 CEST 2018
## 2851 Tue Jan 29 09:26:53 CET 2019
## 2852 Mon Mar 30 16:09:20 CEST 2020
## 2853 Thu Nov 19 15:50:59 CET 2020
## 2854 Tue Mar 15 19:52:12 CET 2016
## 2855 Thu Aug 04 10:16:39 CEST 2016
## 2856 Sat Dec 10 19:05:51 CET 2016
## 2857 Sun Mar 19 18:23:49 CET 2017
## 2858 Sat Jun 10 19:56:40 CEST 2017
## 2859 Thu Nov 02 17:44:55 CET 2017
## 2860 Sat Oct 13 09:50:27 CEST 2018
## 2861 Sun Oct 14 10:45:39 CEST 2018
## 2862 Sun Oct 21 08:07:41 CEST 2018
## 2863 Tue Jan 29 09:26:53 CET 2019
## 2864 Mon Mar 30 16:09:20 CEST 2020
## 2865 Thu Nov 19 15:50:59 CET 2020
## 2866 Tue Mar 15 19:52:12 CET 2016
## 2867 Thu Aug 04 10:16:39 CEST 2016
## 2868 Sat Dec 10 19:05:51 CET 2016
## 2869 Sun Mar 19 18:23:49 CET 2017
## 2870 Sat Jun 10 19:56:40 CEST 2017
## 2871 Thu Nov 02 17:44:55 CET 2017
## 2872 Sat Oct 13 09:50:27 CEST 2018
## 2873 Sun Oct 14 10:45:39 CEST 2018
## 2874 Sun Oct 21 08:07:41 CEST 2018
## 2875 Tue Jan 29 09:26:53 CET 2019
## 2876 Mon Mar 30 16:09:20 CEST 2020
## 2877 Thu Nov 19 15:50:59 CET 2020
## 2878 Tue Mar 15 19:52:12 CET 2016
## 2879 Thu Aug 04 10:16:39 CEST 2016
## 2880 Sat Dec 10 19:05:51 CET 2016
## 2881 Sun Mar 19 18:23:49 CET 2017
## 2882 Sat Jun 10 19:56:40 CEST 2017
## 2883 Thu Nov 02 17:44:55 CET 2017
## 2884 Sat Oct 13 09:50:27 CEST 2018
## 2885 Sun Oct 14 10:45:39 CEST 2018
## 2886 Sun Oct 21 08:07:41 CEST 2018
## 2887 Tue Jan 29 09:26:53 CET 2019
## 2888 Mon Mar 30 16:09:20 CEST 2020
## 2889 Thu Nov 19 15:50:59 CET 2020
## 2890 Tue Mar 15 19:52:12 CET 2016
## 2891 Thu Aug 04 10:16:39 CEST 2016
## 2892 Sat Dec 10 19:05:51 CET 2016
## 2893 Sun Mar 19 18:23:49 CET 2017
## 2894 Sat Jun 10 19:56:40 CEST 2017
## 2895 Thu Nov 02 17:44:55 CET 2017
## 2896 Sat Oct 13 09:50:27 CEST 2018
## 2897 Sun Oct 14 10:45:39 CEST 2018
## 2898 Sun Oct 21 08:07:41 CEST 2018
## 2899 Tue Jan 29 09:26:53 CET 2019
## 2900 Mon Mar 30 16:09:20 CEST 2020
## 2901 Thu Nov 19 15:50:59 CET 2020
## 2902 Tue Mar 15 19:52:12 CET 2016
## 2903 Thu Aug 04 10:16:39 CEST 2016
## 2904 Sat Dec 10 19:05:51 CET 2016
## 2905 Sun Mar 19 18:23:49 CET 2017
## 2906 Sat Jun 10 19:56:40 CEST 2017
## 2907 Thu Nov 02 17:44:55 CET 2017
## 2908 Sat Oct 13 09:50:27 CEST 2018
## 2909 Sun Oct 14 10:45:39 CEST 2018
## 2910 Sun Oct 21 08:07:41 CEST 2018
## 2911 Tue Jan 29 09:26:53 CET 2019
## 2912 Mon Mar 30 16:09:20 CEST 2020
## 2913 Thu Nov 19 15:50:59 CET 2020
## 2914 Tue Mar 15 19:52:12 CET 2016
## 2915 Thu Aug 04 10:16:39 CEST 2016
## 2916 Sat Dec 10 19:05:51 CET 2016
## 2917 Sun Mar 19 18:23:49 CET 2017
## 2918 Sat Jun 10 19:56:40 CEST 2017
## 2919 Thu Nov 02 17:44:55 CET 2017
## 2920 Sat Oct 13 09:50:27 CEST 2018
## 2921 Sun Oct 14 10:45:39 CEST 2018
## 2922 Sun Oct 21 08:07:41 CEST 2018
## 2923 Tue Jan 29 09:26:53 CET 2019
## 2924 Mon Mar 30 16:09:20 CEST 2020
## 2925 Thu Nov 19 15:50:59 CET 2020
## 2926 Tue Mar 15 19:52:12 CET 2016
## 2927 Thu Aug 04 10:16:39 CEST 2016
## 2928 Sat Dec 10 19:05:51 CET 2016
## 2929 Sun Mar 19 18:23:49 CET 2017
## 2930 Sat Jun 10 19:56:40 CEST 2017
## 2931 Thu Nov 02 17:44:55 CET 2017
## 2932 Sat Oct 13 09:50:27 CEST 2018
## 2933 Sun Oct 14 10:45:39 CEST 2018
## 2934 Sun Oct 21 08:07:41 CEST 2018
## 2935 Tue Jan 29 09:26:53 CET 2019
## 2936 Mon Mar 30 16:09:20 CEST 2020
## 2937 Thu Nov 19 15:50:59 CET 2020
## 2938 Tue Mar 15 19:52:12 CET 2016
## 2939 Thu Aug 04 10:16:39 CEST 2016
## 2940 Sat Dec 10 19:05:51 CET 2016
## 2941 Sun Mar 19 18:23:49 CET 2017
## 2942 Sat Jun 10 19:56:40 CEST 2017
## 2943 Thu Nov 02 17:44:55 CET 2017
## 2944 Sat Oct 13 09:50:27 CEST 2018
## 2945 Sun Oct 14 10:45:39 CEST 2018
## 2946 Sun Oct 21 08:07:41 CEST 2018
## 2947 Tue Jan 29 09:26:53 CET 2019
## 2948 Mon Mar 30 16:09:20 CEST 2020
## 2949 Thu Nov 19 15:50:59 CET 2020
## 2950 Tue Mar 15 19:52:12 CET 2016
## 2951 Thu Aug 04 10:16:39 CEST 2016
## 2952 Sat Dec 10 19:05:51 CET 2016
## 2953 Sun Mar 19 18:23:49 CET 2017
## 2954 Sat Jun 10 19:56:40 CEST 2017
## 2955 Thu Nov 02 17:44:55 CET 2017
## 2956 Sat Oct 13 09:50:27 CEST 2018
## 2957 Sun Oct 14 10:45:39 CEST 2018
## 2958 Sun Oct 21 08:07:41 CEST 2018
## 2959 Tue Jan 29 09:26:53 CET 2019
## 2960 Mon Mar 30 16:09:20 CEST 2020
## 2961 Thu Nov 19 15:50:59 CET 2020
## 2962 Tue Mar 15 19:52:12 CET 2016
## 2963 Thu Aug 04 10:16:39 CEST 2016
## 2964 Sat Dec 10 19:05:51 CET 2016
## 2965 Sun Mar 19 18:23:49 CET 2017
## 2966 Sat Jun 10 19:56:40 CEST 2017
## 2967 Thu Nov 02 17:44:55 CET 2017
## 2968 Sat Oct 13 09:50:27 CEST 2018
## 2969 Sun Oct 14 10:45:39 CEST 2018
## 2970 Sun Oct 21 08:07:41 CEST 2018
## 2971 Tue Jan 29 09:26:53 CET 2019
## 2972 Mon Mar 30 16:09:20 CEST 2020
## 2973 Thu Nov 19 15:50:59 CET 2020
## 2974 Tue Mar 15 19:52:12 CET 2016
## 2975 Thu Aug 04 10:16:39 CEST 2016
## 2976 Sat Dec 10 19:05:51 CET 2016
## 2977 Sun Mar 19 18:23:49 CET 2017
## 2978 Sat Jun 10 19:56:40 CEST 2017
## 2979 Thu Nov 02 17:44:55 CET 2017
## 2980 Sat Oct 13 09:50:27 CEST 2018
## 2981 Sun Oct 14 10:45:39 CEST 2018
## 2982 Sun Oct 21 08:07:41 CEST 2018
## 2983 Tue Jan 29 09:26:53 CET 2019
## 2984 Mon Mar 30 16:09:20 CEST 2020
## 2985 Thu Nov 19 15:50:59 CET 2020
## 2986 Tue Mar 15 19:52:12 CET 2016
## 2987 Thu Aug 04 10:16:39 CEST 2016
## 2988 Sat Dec 10 19:05:51 CET 2016
## 2989 Sun Mar 19 18:23:49 CET 2017
## 2990 Sat Jun 10 19:56:40 CEST 2017
## 2991 Thu Nov 02 17:44:55 CET 2017
## 2992 Sat Oct 13 09:50:27 CEST 2018
## 2993 Sun Oct 14 10:45:39 CEST 2018
## 2994 Sun Oct 21 08:07:41 CEST 2018
## 2995 Tue Jan 29 09:26:53 CET 2019
## 2996 Mon Mar 30 16:09:20 CEST 2020
## 2997 Thu Nov 19 15:50:59 CET 2020
## 2998 Tue Mar 15 19:52:12 CET 2016
## 2999 Thu Aug 04 10:16:39 CEST 2016
## 3000 Sat Dec 10 19:05:51 CET 2016
## 3001 Sun Mar 19 18:23:49 CET 2017
## 3002 Sat Jun 10 19:56:40 CEST 2017
## 3003 Thu Nov 02 17:44:55 CET 2017
## 3004 Sat Oct 13 09:50:27 CEST 2018
## 3005 Sun Oct 14 10:45:39 CEST 2018
## 3006 Sun Oct 21 08:07:41 CEST 2018
## 3007 Tue Jan 29 09:26:53 CET 2019
## 3008 Mon Mar 30 16:09:20 CEST 2020
## 3009 Thu Nov 19 15:50:59 CET 2020
## 3010 Tue Mar 15 19:52:12 CET 2016
## 3011 Thu Aug 04 10:16:39 CEST 2016
## 3012 Sat Dec 10 19:05:51 CET 2016
## 3013 Sun Mar 19 18:23:49 CET 2017
## 3014 Sat Jun 10 19:56:40 CEST 2017
## 3015 Thu Nov 02 17:44:55 CET 2017
## 3016 Sat Oct 13 09:50:27 CEST 2018
## 3017 Sun Oct 14 10:45:39 CEST 2018
## 3018 Sun Oct 21 08:07:41 CEST 2018
## 3019 Tue Jan 29 09:26:53 CET 2019
## 3020 Mon Mar 30 16:09:20 CEST 2020
## 3021 Thu Nov 19 15:50:59 CET 2020
## 3022 Tue Mar 15 19:52:12 CET 2016
## 3023 Thu Aug 04 10:16:39 CEST 2016
## 3024 Sat Dec 10 19:05:51 CET 2016
## 3025 Sun Mar 19 18:23:49 CET 2017
## 3026 Sat Jun 10 19:56:40 CEST 2017
## 3027 Thu Nov 02 17:44:55 CET 2017
## 3028 Sat Oct 13 09:50:27 CEST 2018
## 3029 Sun Oct 14 10:45:39 CEST 2018
## 3030 Sun Oct 21 08:07:41 CEST 2018
## 3031 Tue Jan 29 09:26:53 CET 2019
## 3032 Mon Mar 30 16:09:20 CEST 2020
## 3033 Thu Nov 19 15:50:59 CET 2020
## 3034 Tue Mar 15 19:52:12 CET 2016
## 3035 Thu Aug 04 10:16:39 CEST 2016
## 3036 Sat Dec 10 19:05:51 CET 2016
## 3037 Sun Mar 19 18:23:49 CET 2017
## 3038 Sat Jun 10 19:56:40 CEST 2017
## 3039 Thu Nov 02 17:44:55 CET 2017
## 3040 Sat Oct 13 09:50:27 CEST 2018
## 3041 Sun Oct 14 10:45:39 CEST 2018
## 3042 Sun Oct 21 08:07:41 CEST 2018
## 3043 Tue Jan 29 09:26:53 CET 2019
## 3044 Mon Mar 30 16:09:20 CEST 2020
## 3045 Thu Nov 19 15:50:59 CET 2020
## 3046 Tue Mar 15 19:52:12 CET 2016
## 3047 Thu Aug 04 10:16:39 CEST 2016
## 3048 Sat Dec 10 19:05:51 CET 2016
## 3049 Sun Mar 19 18:23:49 CET 2017
## 3050 Sat Jun 10 19:56:40 CEST 2017
## 3051 Thu Nov 02 17:44:55 CET 2017
## 3052 Sat Oct 13 09:50:27 CEST 2018
## 3053 Sun Oct 14 10:45:39 CEST 2018
## 3054 Sun Oct 21 08:07:41 CEST 2018
## 3055 Tue Jan 29 09:26:53 CET 2019
## 3056 Mon Mar 30 16:09:20 CEST 2020
## 3057 Thu Nov 19 15:50:59 CET 2020
## 3058 Tue Mar 15 19:52:12 CET 2016
## 3059 Thu Aug 04 10:16:39 CEST 2016
## 3060 Sat Dec 10 19:05:51 CET 2016
## 3061 Sun Mar 19 18:23:49 CET 2017
## 3062 Sat Jun 10 19:56:40 CEST 2017
## 3063 Thu Nov 02 17:44:55 CET 2017
## 3064 Sat Oct 13 09:50:27 CEST 2018
## 3065 Sun Oct 14 10:45:39 CEST 2018
## 3066 Sun Oct 21 08:07:41 CEST 2018
## 3067 Tue Jan 29 09:26:53 CET 2019
## 3068 Mon Mar 30 16:09:20 CEST 2020
## 3069 Thu Nov 19 15:50:59 CET 2020
## 3070 Tue Mar 15 19:52:12 CET 2016
## 3071 Thu Aug 04 10:16:39 CEST 2016
## 3072 Sat Dec 10 19:05:51 CET 2016
## 3073 Sun Mar 19 18:23:49 CET 2017
## 3074 Sat Jun 10 19:56:40 CEST 2017
## 3075 Thu Nov 02 17:44:55 CET 2017
## 3076 Sat Oct 13 09:50:27 CEST 2018
## 3077 Sun Oct 14 10:45:39 CEST 2018
## 3078 Sun Oct 21 08:07:41 CEST 2018
## 3079 Tue Jan 29 09:26:53 CET 2019
## 3080 Mon Mar 30 16:09:20 CEST 2020
## 3081 Thu Nov 19 15:50:59 CET 2020
## 3082 Tue Mar 15 19:52:12 CET 2016
## 3083 Thu Aug 04 10:16:39 CEST 2016
## 3084 Sat Dec 10 19:05:51 CET 2016
## 3085 Sun Mar 19 18:23:49 CET 2017
## 3086 Sat Jun 10 19:56:40 CEST 2017
## 3087 Thu Nov 02 17:44:55 CET 2017
## 3088 Sat Oct 13 09:50:27 CEST 2018
## 3089 Sun Oct 14 10:45:39 CEST 2018
## 3090 Sun Oct 21 08:07:41 CEST 2018
## 3091 Tue Jan 29 09:26:53 CET 2019
## 3092 Mon Mar 30 16:09:20 CEST 2020
## 3093 Thu Nov 19 15:50:59 CET 2020
## 3094 Tue Mar 15 19:52:12 CET 2016
## 3095 Thu Aug 04 10:16:39 CEST 2016
## 3096 Sat Dec 10 19:05:51 CET 2016
## 3097 Sun Mar 19 18:23:49 CET 2017
## 3098 Sat Jun 10 19:56:40 CEST 2017
## 3099 Thu Nov 02 17:44:55 CET 2017
## 3100 Sat Oct 13 09:50:27 CEST 2018
## 3101 Sun Oct 14 10:45:39 CEST 2018
## 3102 Sun Oct 21 08:07:41 CEST 2018
## 3103 Tue Jan 29 09:26:53 CET 2019
## 3104 Mon Mar 30 16:09:20 CEST 2020
## 3105 Thu Nov 19 15:50:59 CET 2020
## 3106 Tue Mar 15 19:52:12 CET 2016
## 3107 Thu Aug 04 10:16:39 CEST 2016
## 3108 Sat Dec 10 19:05:51 CET 2016
## 3109 Sun Mar 19 18:23:49 CET 2017
## 3110 Sat Jun 10 19:56:40 CEST 2017
## 3111 Thu Nov 02 17:44:55 CET 2017
## 3112 Sat Oct 13 09:50:27 CEST 2018
## 3113 Sun Oct 14 10:45:39 CEST 2018
## 3114 Sun Oct 21 08:07:41 CEST 2018
## 3115 Tue Jan 29 09:26:53 CET 2019
## 3116 Mon Mar 30 16:09:20 CEST 2020
## 3117 Thu Nov 19 15:50:59 CET 2020
## 3118 Tue Mar 15 19:52:12 CET 2016
## 3119 Thu Aug 04 10:16:39 CEST 2016
## 3120 Sat Dec 10 19:05:51 CET 2016
## 3121 Sun Mar 19 18:23:49 CET 2017
## 3122 Sat Jun 10 19:56:40 CEST 2017
## 3123 Thu Nov 02 17:44:55 CET 2017
## 3124 Sat Oct 13 09:50:27 CEST 2018
## 3125 Sun Oct 14 10:45:39 CEST 2018
## 3126 Sun Oct 21 08:07:41 CEST 2018
## 3127 Tue Jan 29 09:26:53 CET 2019
## 3128 Mon Mar 30 16:09:20 CEST 2020
## 3129 Thu Nov 19 15:50:59 CET 2020
## 3130 Tue Mar 15 19:52:12 CET 2016
## 3131 Thu Aug 04 10:16:39 CEST 2016
## 3132 Sat Dec 10 19:05:51 CET 2016
## 3133 Sun Mar 19 18:23:49 CET 2017
## 3134 Sat Jun 10 19:56:40 CEST 2017
## 3135 Thu Nov 02 17:44:55 CET 2017
## 3136 Sat Oct 13 09:50:27 CEST 2018
## 3137 Sun Oct 14 10:45:39 CEST 2018
## 3138 Sun Oct 21 08:07:41 CEST 2018
## 3139 Tue Jan 29 09:26:53 CET 2019
## 3140 Mon Mar 30 16:09:20 CEST 2020
## 3141 Thu Nov 19 15:50:59 CET 2020
## 3142 Tue Mar 15 19:52:12 CET 2016
## 3143 Thu Aug 04 10:16:39 CEST 2016
## 3144 Sat Dec 10 19:05:51 CET 2016
## 3145 Sun Mar 19 18:23:49 CET 2017
## 3146 Sat Jun 10 19:56:40 CEST 2017
## 3147 Thu Nov 02 17:44:55 CET 2017
## 3148 Sat Oct 13 09:50:27 CEST 2018
## 3149 Sun Oct 14 10:45:39 CEST 2018
## 3150 Sun Oct 21 08:07:41 CEST 2018
## 3151 Tue Jan 29 09:26:53 CET 2019
## 3152 Mon Mar 30 16:09:20 CEST 2020
## 3153 Thu Nov 19 15:50:59 CET 2020
## 3154 Tue Mar 15 19:52:12 CET 2016
## 3155 Thu Aug 04 10:16:39 CEST 2016
## 3156 Sat Dec 10 19:05:51 CET 2016
## 3157 Sun Mar 19 18:23:49 CET 2017
## 3158 Sat Jun 10 19:56:40 CEST 2017
## 3159 Thu Nov 02 17:44:55 CET 2017
## 3160 Sat Oct 13 09:50:27 CEST 2018
## 3161 Sun Oct 14 10:45:39 CEST 2018
## 3162 Sun Oct 21 08:07:41 CEST 2018
## 3163 Tue Jan 29 09:26:53 CET 2019
## 3164 Mon Mar 30 16:09:20 CEST 2020
## 3165 Thu Nov 19 15:50:59 CET 2020
## 3166 Tue Mar 15 19:52:12 CET 2016
## 3167 Thu Aug 04 10:16:39 CEST 2016
## 3168 Sat Dec 10 19:05:51 CET 2016
## 3169 Sun Mar 19 18:23:49 CET 2017
## 3170 Sat Jun 10 19:56:40 CEST 2017
## 3171 Thu Nov 02 17:44:55 CET 2017
## 3172 Sat Oct 13 09:50:27 CEST 2018
## 3173 Sun Oct 14 10:45:39 CEST 2018
## 3174 Sun Oct 21 08:07:41 CEST 2018
## 3175 Tue Jan 29 09:26:53 CET 2019
## 3176 Mon Mar 30 16:09:20 CEST 2020
## 3177 Thu Nov 19 15:50:59 CET 2020
## 3178 Tue Mar 15 19:52:12 CET 2016
## 3179 Thu Aug 04 10:16:39 CEST 2016
## 3180 Sat Dec 10 19:05:51 CET 2016
## 3181 Sun Mar 19 18:23:49 CET 2017
## 3182 Sat Jun 10 19:56:40 CEST 2017
## 3183 Thu Nov 02 17:44:55 CET 2017
## 3184 Sat Oct 13 09:50:27 CEST 2018
## 3185 Sun Oct 14 10:45:39 CEST 2018
## 3186 Sun Oct 21 08:07:41 CEST 2018
## 3187 Tue Jan 29 09:26:53 CET 2019
## 3188 Mon Mar 30 16:09:20 CEST 2020
## 3189 Thu Nov 19 15:50:59 CET 2020
## 3190 Tue Mar 15 19:52:12 CET 2016
## 3191 Thu Aug 04 10:16:39 CEST 2016
## 3192 Sat Dec 10 19:05:51 CET 2016
## 3193 Sun Mar 19 18:23:49 CET 2017
## 3194 Sat Jun 10 19:56:40 CEST 2017
## 3195 Thu Nov 02 17:44:55 CET 2017
## 3196 Sat Oct 13 09:50:27 CEST 2018
## 3197 Sun Oct 14 10:45:39 CEST 2018
## 3198 Sun Oct 21 08:07:41 CEST 2018
## 3199 Tue Jan 29 09:26:53 CET 2019
## 3200 Mon Mar 30 16:09:20 CEST 2020
## 3201 Thu Nov 19 15:50:59 CET 2020
## 3202 Tue Mar 15 19:52:12 CET 2016
## 3203 Thu Aug 04 10:16:39 CEST 2016
## 3204 Sat Dec 10 19:05:51 CET 2016
## 3205 Sun Mar 19 18:23:49 CET 2017
## 3206 Sat Jun 10 19:56:40 CEST 2017
## 3207 Thu Nov 02 17:44:55 CET 2017
## 3208 Sat Oct 13 09:50:27 CEST 2018
## 3209 Sun Oct 14 10:45:39 CEST 2018
## 3210 Sun Oct 21 08:07:41 CEST 2018
## 3211 Tue Jan 29 09:26:53 CET 2019
## 3212 Mon Mar 30 16:09:20 CEST 2020
## 3213 Thu Nov 19 15:50:59 CET 2020
## 3214 Tue Mar 15 19:52:12 CET 2016
## 3215 Thu Aug 04 10:16:39 CEST 2016
## 3216 Sat Dec 10 19:05:51 CET 2016
## 3217 Sun Mar 19 18:23:49 CET 2017
## 3218 Sat Jun 10 19:56:40 CEST 2017
## 3219 Thu Nov 02 17:44:55 CET 2017
## 3220 Sat Oct 13 09:50:27 CEST 2018
## 3221 Sun Oct 14 10:45:39 CEST 2018
## 3222 Sun Oct 21 08:07:41 CEST 2018
## 3223 Tue Jan 29 09:26:53 CET 2019
## 3224 Mon Mar 30 16:09:20 CEST 2020
## 3225 Thu Nov 19 15:50:59 CET 2020
## 3226 Tue Mar 15 19:52:12 CET 2016
## 3227 Thu Aug 04 10:16:39 CEST 2016
## 3228 Sat Dec 10 19:05:51 CET 2016
## 3229 Sun Mar 19 18:23:49 CET 2017
## 3230 Sat Jun 10 19:56:40 CEST 2017
## 3231 Thu Nov 02 17:44:55 CET 2017
## 3232 Sat Oct 13 09:50:27 CEST 2018
## 3233 Sun Oct 14 10:45:39 CEST 2018
## 3234 Sun Oct 21 08:07:41 CEST 2018
## 3235 Tue Jan 29 09:26:53 CET 2019
## 3236 Mon Mar 30 16:09:20 CEST 2020
## 3237 Thu Nov 19 15:50:59 CET 2020
## 3238 Tue Mar 15 19:52:12 CET 2016
## 3239 Thu Aug 04 10:16:39 CEST 2016
## 3240 Sat Dec 10 19:05:51 CET 2016
## 3241 Sun Mar 19 18:23:49 CET 2017
## 3242 Sat Jun 10 19:56:40 CEST 2017
## 3243 Thu Nov 02 17:44:55 CET 2017
## 3244 Sat Oct 13 09:50:27 CEST 2018
## 3245 Sun Oct 14 10:45:39 CEST 2018
## 3246 Sun Oct 21 08:07:41 CEST 2018
## 3247 Tue Jan 29 09:26:53 CET 2019
## 3248 Mon Mar 30 16:09:20 CEST 2020
## 3249 Thu Nov 19 15:50:59 CET 2020
## 3250 Tue Mar 15 19:52:12 CET 2016
## 3251 Thu Aug 04 10:16:39 CEST 2016
## 3252 Sat Dec 10 19:05:51 CET 2016
## 3253 Sun Mar 19 18:23:49 CET 2017
## 3254 Sat Jun 10 19:56:40 CEST 2017
## 3255 Thu Nov 02 17:44:55 CET 2017
## 3256 Sat Oct 13 09:50:27 CEST 2018
## 3257 Sun Oct 14 10:45:39 CEST 2018
## 3258 Sun Oct 21 08:07:41 CEST 2018
## 3259 Tue Jan 29 09:26:53 CET 2019
## 3260 Mon Mar 30 16:09:20 CEST 2020
## 3261 Thu Nov 19 15:50:59 CET 2020
## 3262 Tue Mar 15 19:52:12 CET 2016
## 3263 Thu Aug 04 10:16:39 CEST 2016
## 3264 Sat Dec 10 19:05:51 CET 2016
## 3265 Sun Mar 19 18:23:49 CET 2017
## 3266 Sat Jun 10 19:56:40 CEST 2017
## 3267 Thu Nov 02 17:44:55 CET 2017
## 3268 Sat Oct 13 09:50:27 CEST 2018
## 3269 Sun Oct 14 10:45:39 CEST 2018
## 3270 Sun Oct 21 08:07:41 CEST 2018
## 3271 Tue Jan 29 09:26:53 CET 2019
## 3272 Mon Mar 30 16:09:20 CEST 2020
## 3273 Thu Nov 19 15:50:59 CET 2020
## 3274 Tue Mar 15 19:52:12 CET 2016
## 3275 Thu Aug 04 10:16:39 CEST 2016
## 3276 Sat Dec 10 19:05:51 CET 2016
## 3277 Sun Mar 19 18:23:49 CET 2017
## 3278 Sat Jun 10 19:56:40 CEST 2017
## 3279 Thu Nov 02 17:44:55 CET 2017
## 3280 Sat Oct 13 09:50:27 CEST 2018
## 3281 Sun Oct 14 10:45:39 CEST 2018
## 3282 Sun Oct 21 08:07:41 CEST 2018
## 3283 Tue Jan 29 09:26:53 CET 2019
## 3284 Mon Mar 30 16:09:20 CEST 2020
## 3285 Thu Nov 19 15:50:59 CET 2020
## 3286 Tue Mar 15 19:52:12 CET 2016
## 3287 Thu Aug 04 10:16:39 CEST 2016
## 3288 Sat Dec 10 19:05:51 CET 2016
## 3289 Sun Mar 19 18:23:49 CET 2017
## 3290 Sat Jun 10 19:56:40 CEST 2017
## 3291 Thu Nov 02 17:44:55 CET 2017
## 3292 Sat Oct 13 09:50:27 CEST 2018
## 3293 Sun Oct 14 10:45:39 CEST 2018
## 3294 Sun Oct 21 08:07:41 CEST 2018
## 3295 Tue Jan 29 09:26:53 CET 2019
## 3296 Mon Mar 30 16:09:20 CEST 2020
## 3297 Thu Nov 19 15:50:59 CET 2020
## 3298 Tue Mar 15 19:52:12 CET 2016
## 3299 Thu Aug 04 10:16:39 CEST 2016
## 3300 Sat Dec 10 19:05:51 CET 2016
## 3301 Sun Mar 19 18:23:49 CET 2017
## 3302 Sat Jun 10 19:56:40 CEST 2017
## 3303 Thu Nov 02 17:44:55 CET 2017
## 3304 Sat Oct 13 09:50:27 CEST 2018
## 3305 Sun Oct 14 10:45:39 CEST 2018
## 3306 Sun Oct 21 08:07:41 CEST 2018
## 3307 Tue Jan 29 09:26:53 CET 2019
## 3308 Mon Mar 30 16:09:20 CEST 2020
## 3309 Thu Nov 19 15:50:59 CET 2020
## 3310 Tue Mar 15 19:52:12 CET 2016
## 3311 Thu Aug 04 10:16:39 CEST 2016
## 3312 Sat Dec 10 19:05:51 CET 2016
## 3313 Sun Mar 19 18:23:49 CET 2017
## 3314 Sat Jun 10 19:56:40 CEST 2017
## 3315 Thu Nov 02 17:44:55 CET 2017
## 3316 Sat Oct 13 09:50:27 CEST 2018
## 3317 Sun Oct 14 10:45:39 CEST 2018
## 3318 Sun Oct 21 08:07:41 CEST 2018
## 3319 Tue Jan 29 09:26:53 CET 2019
## 3320 Mon Mar 30 16:09:20 CEST 2020
## 3321 Thu Nov 19 15:50:59 CET 2020
## 3322 Tue Mar 15 19:52:12 CET 2016
## 3323 Thu Aug 04 10:16:39 CEST 2016
## 3324 Sat Dec 10 19:05:51 CET 2016
## 3325 Sun Mar 19 18:23:49 CET 2017
## 3326 Sat Jun 10 19:56:40 CEST 2017
## 3327 Thu Nov 02 17:44:55 CET 2017
## 3328 Sat Oct 13 09:50:27 CEST 2018
## 3329 Sun Oct 14 10:45:39 CEST 2018
## 3330 Sun Oct 21 08:07:41 CEST 2018
## 3331 Tue Jan 29 09:26:53 CET 2019
## 3332 Mon Mar 30 16:09:20 CEST 2020
## 3333 Thu Nov 19 15:50:59 CET 2020
## 3334 Tue Mar 15 19:52:12 CET 2016
## 3335 Thu Aug 04 10:16:39 CEST 2016
## 3336 Sat Dec 10 19:05:51 CET 2016
## 3337 Sun Mar 19 18:23:49 CET 2017
## 3338 Sat Jun 10 19:56:40 CEST 2017
## 3339 Thu Nov 02 17:44:55 CET 2017
## 3340 Sat Oct 13 09:50:27 CEST 2018
## 3341 Sun Oct 14 10:45:39 CEST 2018
## 3342 Sun Oct 21 08:07:41 CEST 2018
## 3343 Tue Jan 29 09:26:53 CET 2019
## 3344 Mon Mar 30 16:09:20 CEST 2020
## 3345 Thu Nov 19 15:50:59 CET 2020
## 3346 Tue Mar 15 19:52:12 CET 2016
## 3347 Thu Aug 04 10:16:39 CEST 2016
## 3348 Sat Dec 10 19:05:51 CET 2016
## 3349 Sun Mar 19 18:23:49 CET 2017
## 3350 Sat Jun 10 19:56:40 CEST 2017
## 3351 Thu Nov 02 17:44:55 CET 2017
## 3352 Sat Oct 13 09:50:27 CEST 2018
## 3353 Sun Oct 14 10:45:39 CEST 2018
## 3354 Sun Oct 21 08:07:41 CEST 2018
## 3355 Tue Jan 29 09:26:53 CET 2019
## 3356 Mon Mar 30 16:09:20 CEST 2020
## 3357 Thu Nov 19 15:50:59 CET 2020
## 3358 Tue Mar 15 19:52:12 CET 2016
## 3359 Thu Aug 04 10:16:39 CEST 2016
## 3360 Sat Dec 10 19:05:51 CET 2016
## 3361 Sun Mar 19 18:23:49 CET 2017
## 3362 Sat Jun 10 19:56:40 CEST 2017
## 3363 Thu Nov 02 17:44:55 CET 2017
## 3364 Sat Oct 13 09:50:27 CEST 2018
## 3365 Sun Oct 14 10:45:39 CEST 2018
## 3366 Sun Oct 21 08:07:41 CEST 2018
## 3367 Tue Jan 29 09:26:53 CET 2019
## 3368 Mon Mar 30 16:09:20 CEST 2020
## 3369 Thu Nov 19 15:50:59 CET 2020
## 3370 Tue Mar 15 19:52:12 CET 2016
## 3371 Thu Aug 04 10:16:39 CEST 2016
## 3372 Sat Dec 10 19:05:51 CET 2016
## 3373 Sun Mar 19 18:23:49 CET 2017
## 3374 Sat Jun 10 19:56:40 CEST 2017
## 3375 Thu Nov 02 17:44:55 CET 2017
## 3376 Sat Oct 13 09:50:27 CEST 2018
## 3377 Sun Oct 14 10:45:39 CEST 2018
## 3378 Sun Oct 21 08:07:41 CEST 2018
## 3379 Tue Jan 29 09:26:53 CET 2019
## 3380 Mon Mar 30 16:09:20 CEST 2020
## 3381 Thu Nov 19 15:50:59 CET 2020
## 3382 Tue Mar 15 19:52:12 CET 2016
## 3383 Thu Aug 04 10:16:39 CEST 2016
## 3384 Sat Dec 10 19:05:51 CET 2016
## 3385 Sun Mar 19 18:23:49 CET 2017
## 3386 Sat Jun 10 19:56:40 CEST 2017
## 3387 Thu Nov 02 17:44:55 CET 2017
## 3388 Sat Oct 13 09:50:27 CEST 2018
## 3389 Sun Oct 14 10:45:39 CEST 2018
## 3390 Sun Oct 21 08:07:41 CEST 2018
## 3391 Tue Jan 29 09:26:53 CET 2019
## 3392 Mon Mar 30 16:09:20 CEST 2020
## 3393 Thu Nov 19 15:50:59 CET 2020
## 3394 Sat Dec 10 19:05:51 CET 2016
## 3395 Sun Mar 19 18:23:49 CET 2017
## 3396 Sat Jun 10 19:56:40 CEST 2017
## 3397 Thu Nov 02 17:44:55 CET 2017
## 3398 Sat Oct 13 09:50:27 CEST 2018
## 3399 Sun Oct 14 10:45:39 CEST 2018
## 3400 Sun Oct 21 08:07:41 CEST 2018
## 3401 Tue Jan 29 09:26:53 CET 2019
## 3402 Mon Mar 30 16:09:20 CEST 2020
## 3403 Thu Nov 19 15:50:59 CET 2020
## 3404 Tue Mar 15 19:52:12 CET 2016
## 3405 Thu Aug 04 10:16:39 CEST 2016
## 3406 Sat Dec 10 19:05:51 CET 2016
## 3407 Sun Mar 19 18:23:49 CET 2017
## 3408 Sat Jun 10 19:56:40 CEST 2017
## 3409 Thu Nov 02 17:44:55 CET 2017
## 3410 Sat Oct 13 09:50:27 CEST 2018
## 3411 Sun Oct 14 10:45:39 CEST 2018
## 3412 Sun Oct 21 08:07:41 CEST 2018
## 3413 Tue Jan 29 09:26:53 CET 2019
## 3414 Mon Mar 30 16:09:20 CEST 2020
## 3415 Thu Nov 19 15:50:59 CET 2020
## 3416 Sat Dec 10 19:05:51 CET 2016
## 3417 Sun Mar 19 18:23:49 CET 2017
## 3418 Sat Jun 10 19:56:40 CEST 2017
## 3419 Thu Nov 02 17:44:55 CET 2017
## 3420 Sat Oct 13 09:50:27 CEST 2018
## 3421 Sun Oct 14 10:45:39 CEST 2018
## 3422 Sun Oct 21 08:07:41 CEST 2018
## 3423 Tue Jan 29 09:26:53 CET 2019
## 3424 Mon Mar 30 16:09:20 CEST 2020
## 3425 Thu Nov 19 15:50:59 CET 2020
## 3426 Tue Mar 15 19:52:12 CET 2016
## 3427 Thu Aug 04 10:16:39 CEST 2016
## 3428 Sat Dec 10 19:05:51 CET 2016
## 3429 Sun Mar 19 18:23:49 CET 2017
## 3430 Sat Jun 10 19:56:40 CEST 2017
## 3431 Thu Nov 02 17:44:55 CET 2017
## 3432 Sat Oct 13 09:50:27 CEST 2018
## 3433 Sun Oct 14 10:45:39 CEST 2018
## 3434 Sun Oct 21 08:07:41 CEST 2018
## 3435 Tue Jan 29 09:26:53 CET 2019
## 3436 Mon Mar 30 16:09:20 CEST 2020
## 3437 Thu Nov 19 15:50:59 CET 2020
## 3438 Tue Mar 15 19:52:12 CET 2016
## 3439 Thu Aug 04 10:16:39 CEST 2016
## 3440 Sat Dec 10 19:05:51 CET 2016
## 3441 Sun Mar 19 18:23:49 CET 2017
## 3442 Sat Jun 10 19:56:40 CEST 2017
## 3443 Thu Nov 02 17:44:55 CET 2017
## 3444 Sat Oct 13 09:50:27 CEST 2018
## 3445 Sun Oct 14 10:45:39 CEST 2018
## 3446 Sun Oct 21 08:07:41 CEST 2018
## 3447 Tue Jan 29 09:26:53 CET 2019
## 3448 Mon Mar 30 16:09:20 CEST 2020
## 3449 Thu Nov 19 15:50:59 CET 2020
## 3450 Sat Dec 10 19:05:51 CET 2016
## 3451 Sun Mar 19 18:23:49 CET 2017
## 3452 Sat Jun 10 19:56:40 CEST 2017
## 3453 Thu Nov 02 17:44:55 CET 2017
## 3454 Sat Oct 13 09:50:27 CEST 2018
## 3455 Sun Oct 14 10:45:39 CEST 2018
## 3456 Sun Oct 21 08:07:41 CEST 2018
## 3457 Tue Jan 29 09:26:53 CET 2019
## 3458 Mon Mar 30 16:09:20 CEST 2020
## 3459 Thu Nov 19 15:50:59 CET 2020
## 3460 Sat Dec 10 19:05:51 CET 2016
## 3461 Sun Mar 19 18:23:49 CET 2017
## 3462 Sat Jun 10 19:56:40 CEST 2017
## 3463 Thu Nov 02 17:44:55 CET 2017
## 3464 Sat Oct 13 09:50:27 CEST 2018
## 3465 Sun Oct 14 10:45:39 CEST 2018
## 3466 Sun Oct 21 08:07:41 CEST 2018
## 3467 Tue Jan 29 09:26:53 CET 2019
## 3468 Mon Mar 30 16:09:20 CEST 2020
## 3469 Thu Nov 19 15:50:59 CET 2020
## 3470 Tue Mar 15 19:52:12 CET 2016
## 3471 Thu Aug 04 10:16:39 CEST 2016
## 3472 Sat Dec 10 19:05:51 CET 2016
## 3473 Sun Mar 19 18:23:49 CET 2017
## 3474 Sat Jun 10 19:56:40 CEST 2017
## 3475 Thu Nov 02 17:44:55 CET 2017
## 3476 Sat Oct 13 09:50:27 CEST 2018
## 3477 Sun Oct 14 10:45:39 CEST 2018
## 3478 Sun Oct 21 08:07:41 CEST 2018
## 3479 Tue Jan 29 09:26:53 CET 2019
## 3480 Mon Mar 30 16:09:20 CEST 2020
## 3481 Thu Nov 19 15:50:59 CET 2020
## 3482 Tue Mar 15 19:52:12 CET 2016
## 3483 Thu Aug 04 10:16:39 CEST 2016
## 3484 Sat Dec 10 19:05:51 CET 2016
## 3485 Sun Mar 19 18:23:49 CET 2017
## 3486 Sat Jun 10 19:56:40 CEST 2017
## 3487 Thu Nov 02 17:44:55 CET 2017
## 3488 Sat Oct 13 09:50:27 CEST 2018
## 3489 Sun Oct 14 10:45:39 CEST 2018
## 3490 Sun Oct 21 08:07:41 CEST 2018
## 3491 Tue Jan 29 09:26:53 CET 2019
## 3492 Mon Mar 30 16:09:20 CEST 2020
## 3493 Thu Nov 19 15:50:59 CET 2020
## 3494 Tue Mar 15 19:52:12 CET 2016
## 3495 Thu Aug 04 10:16:39 CEST 2016
## 3496 Sat Dec 10 19:05:51 CET 2016
## 3497 Sun Mar 19 18:23:49 CET 2017
## 3498 Sat Jun 10 19:56:40 CEST 2017
## 3499 Thu Nov 02 17:44:55 CET 2017
## 3500 Sat Oct 13 09:50:27 CEST 2018
## 3501 Sun Oct 14 10:45:39 CEST 2018
## 3502 Sun Oct 21 08:07:41 CEST 2018
## 3503 Tue Jan 29 09:26:53 CET 2019
## 3504 Mon Mar 30 16:09:20 CEST 2020
## 3505 Thu Nov 19 15:50:59 CET 2020
## 3506 Tue Mar 15 19:52:12 CET 2016
## 3507 Thu Aug 04 10:16:39 CEST 2016
## 3508 Sat Dec 10 19:05:51 CET 2016
## 3509 Sun Mar 19 18:23:49 CET 2017
## 3510 Sat Jun 10 19:56:40 CEST 2017
## 3511 Thu Nov 02 17:44:55 CET 2017
## 3512 Sat Oct 13 09:50:27 CEST 2018
## 3513 Sun Oct 14 10:45:39 CEST 2018
## 3514 Sun Oct 21 08:07:41 CEST 2018
## 3515 Tue Jan 29 09:26:53 CET 2019
## 3516 Mon Mar 30 16:09:20 CEST 2020
## 3517 Thu Nov 19 15:50:59 CET 2020
## 3518 Tue Mar 15 19:52:12 CET 2016
## 3519 Thu Aug 04 10:16:39 CEST 2016
## 3520 Sat Dec 10 19:05:51 CET 2016
## 3521 Sun Mar 19 18:23:49 CET 2017
## 3522 Sat Jun 10 19:56:40 CEST 2017
## 3523 Thu Nov 02 17:44:55 CET 2017
## 3524 Sat Oct 13 09:50:27 CEST 2018
## 3525 Sun Oct 14 10:45:39 CEST 2018
## 3526 Sun Oct 21 08:07:41 CEST 2018
## 3527 Tue Jan 29 09:26:53 CET 2019
## 3528 Mon Mar 30 16:09:20 CEST 2020
## 3529 Thu Nov 19 15:50:59 CET 2020
## 3530 Tue Mar 15 19:52:12 CET 2016
## 3531 Thu Aug 04 10:16:39 CEST 2016
## 3532 Sat Dec 10 19:05:51 CET 2016
## 3533 Sun Mar 19 18:23:49 CET 2017
## 3534 Sat Jun 10 19:56:40 CEST 2017
## 3535 Thu Nov 02 17:44:55 CET 2017
## 3536 Sat Oct 13 09:50:27 CEST 2018
## 3537 Sun Oct 14 10:45:39 CEST 2018
## 3538 Sun Oct 21 08:07:41 CEST 2018
## 3539 Tue Jan 29 09:26:53 CET 2019
## 3540 Mon Mar 30 16:09:20 CEST 2020
## 3541 Thu Nov 19 15:50:59 CET 2020
## 3542 Tue Mar 15 19:52:12 CET 2016
## 3543 Thu Aug 04 10:16:39 CEST 2016
## 3544 Sat Dec 10 19:05:51 CET 2016
## 3545 Sun Mar 19 18:23:49 CET 2017
## 3546 Sat Jun 10 19:56:40 CEST 2017
## 3547 Thu Nov 02 17:44:55 CET 2017
## 3548 Sat Oct 13 09:50:27 CEST 2018
## 3549 Sun Oct 14 10:45:39 CEST 2018
## 3550 Sun Oct 21 08:07:41 CEST 2018
## 3551 Tue Jan 29 09:26:53 CET 2019
## 3552 Mon Mar 30 16:09:20 CEST 2020
## 3553 Thu Nov 19 15:50:59 CET 2020
## 3554 Tue Mar 15 19:52:12 CET 2016
## 3555 Thu Aug 04 10:16:39 CEST 2016
## 3556 Sat Dec 10 19:05:51 CET 2016
## 3557 Sun Mar 19 18:23:49 CET 2017
## 3558 Sat Jun 10 19:56:40 CEST 2017
## 3559 Thu Nov 02 17:44:55 CET 2017
## 3560 Sat Oct 13 09:50:27 CEST 2018
## 3561 Sun Oct 14 10:45:39 CEST 2018
## 3562 Sun Oct 21 08:07:41 CEST 2018
## 3563 Tue Jan 29 09:26:53 CET 2019
## 3564 Mon Mar 30 16:09:20 CEST 2020
## 3565 Thu Nov 19 15:50:59 CET 2020
## 3566 Tue Mar 15 19:52:12 CET 2016
## 3567 Thu Aug 04 10:16:39 CEST 2016
## 3568 Sat Dec 10 19:05:51 CET 2016
## 3569 Sun Mar 19 18:23:49 CET 2017
## 3570 Sat Jun 10 19:56:40 CEST 2017
## 3571 Thu Nov 02 17:44:55 CET 2017
## 3572 Sat Oct 13 09:50:27 CEST 2018
## 3573 Sun Oct 14 10:45:39 CEST 2018
## 3574 Sun Oct 21 08:07:41 CEST 2018
## 3575 Tue Jan 29 09:26:53 CET 2019
## 3576 Mon Mar 30 16:09:20 CEST 2020
## 3577 Thu Nov 19 15:50:59 CET 2020
## 3578 Tue Mar 15 19:52:12 CET 2016
## 3579 Thu Aug 04 10:16:39 CEST 2016
## 3580 Sat Dec 10 19:05:51 CET 2016
## 3581 Sun Mar 19 18:23:49 CET 2017
## 3582 Sat Jun 10 19:56:40 CEST 2017
## 3583 Thu Nov 02 17:44:55 CET 2017
## 3584 Sat Oct 13 09:50:27 CEST 2018
## 3585 Sun Oct 14 10:45:39 CEST 2018
## 3586 Sun Oct 21 08:07:41 CEST 2018
## 3587 Tue Jan 29 09:26:53 CET 2019
## 3588 Mon Mar 30 16:09:20 CEST 2020
## 3589 Thu Nov 19 15:50:59 CET 2020
## 3590 Tue Mar 15 19:52:12 CET 2016
## 3591 Thu Aug 04 10:16:39 CEST 2016
## 3592 Sat Dec 10 19:05:51 CET 2016
## 3593 Sun Mar 19 18:23:49 CET 2017
## 3594 Sat Jun 10 19:56:40 CEST 2017
## 3595 Thu Nov 02 17:44:55 CET 2017
## 3596 Sat Oct 13 09:50:27 CEST 2018
## 3597 Sun Oct 14 10:45:39 CEST 2018
## 3598 Sun Oct 21 08:07:41 CEST 2018
## 3599 Tue Jan 29 09:26:53 CET 2019
## 3600 Mon Mar 30 16:09:20 CEST 2020
## 3601 Thu Nov 19 15:50:59 CET 2020
## 3602 Tue Mar 15 19:52:12 CET 2016
## 3603 Thu Aug 04 10:16:39 CEST 2016
## 3604 Sat Dec 10 19:05:51 CET 2016
## 3605 Sun Mar 19 18:23:49 CET 2017
## 3606 Sat Jun 10 19:56:40 CEST 2017
## 3607 Thu Nov 02 17:44:55 CET 2017
## 3608 Sat Oct 13 09:50:27 CEST 2018
## 3609 Sun Oct 14 10:45:39 CEST 2018
## 3610 Sun Oct 21 08:07:41 CEST 2018
## 3611 Tue Jan 29 09:26:53 CET 2019
## 3612 Mon Mar 30 16:09:20 CEST 2020
## 3613 Thu Nov 19 15:50:59 CET 2020
## 3614 Sat May 09 12:08:19 CEST 2015
## 3615 Fri Jul 10 00:25:11 CEST 2015
## 3616 Tue Mar 15 19:52:12 CET 2016
## 3617 Thu Aug 04 10:16:39 CEST 2016
## 3618 Sat Dec 10 19:05:51 CET 2016
## 3619 Sun Mar 19 18:23:49 CET 2017
## 3620 Sat Jun 10 19:56:40 CEST 2017
## 3621 Thu Nov 02 17:44:55 CET 2017
## 3622 Sat Oct 13 09:50:27 CEST 2018
## 3623 Sun Oct 14 10:45:39 CEST 2018
## 3624 Sun Oct 21 08:07:41 CEST 2018
## 3625 Tue Jan 29 09:26:53 CET 2019
## 3626 Mon Mar 30 16:09:20 CEST 2020
## 3627 Thu Nov 19 15:50:59 CET 2020
## 3628 Sat May 09 12:08:19 CEST 2015
## 3629 Fri Jul 10 00:25:11 CEST 2015
## 3630 Tue Mar 15 19:52:12 CET 2016
## 3631 Thu Aug 04 10:16:39 CEST 2016
## 3632 Sat Dec 10 19:05:51 CET 2016
## 3633 Sun Mar 19 18:23:49 CET 2017
## 3634 Sat Jun 10 19:56:40 CEST 2017
## 3635 Thu Nov 02 17:44:55 CET 2017
## 3636 Sat Oct 13 09:50:27 CEST 2018
## 3637 Sun Oct 14 10:45:39 CEST 2018
## 3638 Sun Oct 21 08:07:41 CEST 2018
## 3639 Tue Jan 29 09:26:53 CET 2019
## 3640 Mon Mar 30 16:09:20 CEST 2020
## 3641 Thu Nov 19 15:50:59 CET 2020
## 3642 Tue Mar 15 19:52:12 CET 2016
## 3643 Thu Aug 04 10:16:39 CEST 2016
## 3644 Sat Dec 10 19:05:51 CET 2016
## 3645 Sun Mar 19 18:23:49 CET 2017
## 3646 Sat Jun 10 19:56:40 CEST 2017
## 3647 Thu Nov 02 17:44:55 CET 2017
## 3648 Sat Oct 13 09:50:27 CEST 2018
## 3649 Sun Oct 14 10:45:39 CEST 2018
## 3650 Sun Oct 21 08:07:41 CEST 2018
## 3651 Tue Jan 29 09:26:53 CET 2019
## 3652 Mon Mar 30 16:09:20 CEST 2020
## 3653 Thu Nov 19 15:50:59 CET 2020
## 3654 Tue Mar 15 19:52:12 CET 2016
## 3655 Thu Aug 04 10:16:39 CEST 2016
## 3656 Sat Dec 10 19:05:51 CET 2016
## 3657 Sun Mar 19 18:23:49 CET 2017
## 3658 Sat Jun 10 19:56:40 CEST 2017
## 3659 Thu Nov 02 17:44:55 CET 2017
## 3660 Sat Oct 13 09:50:27 CEST 2018
## 3661 Sun Oct 14 10:45:39 CEST 2018
## 3662 Sun Oct 21 08:07:41 CEST 2018
## 3663 Tue Jan 29 09:26:53 CET 2019
## 3664 Mon Mar 30 16:09:20 CEST 2020
## 3665 Thu Nov 19 15:50:59 CET 2020
## 3666 Tue Mar 15 19:52:12 CET 2016
## 3667 Thu Aug 04 10:16:39 CEST 2016
## 3668 Sat Dec 10 19:05:51 CET 2016
## 3669 Sun Mar 19 18:23:49 CET 2017
## 3670 Sat Jun 10 19:56:40 CEST 2017
## 3671 Thu Nov 02 17:44:55 CET 2017
## 3672 Sat Oct 13 09:50:27 CEST 2018
## 3673 Sun Oct 14 10:45:39 CEST 2018
## 3674 Sun Oct 21 08:07:41 CEST 2018
## 3675 Tue Jan 29 09:26:53 CET 2019
## 3676 Mon Mar 30 16:09:20 CEST 2020
## 3677 Thu Nov 19 15:50:59 CET 2020
## 3678 Tue Mar 15 19:52:12 CET 2016
## 3679 Thu Aug 04 10:16:39 CEST 2016
## 3680 Sat Dec 10 19:05:51 CET 2016
## 3681 Sun Mar 19 18:23:49 CET 2017
## 3682 Sat Jun 10 19:56:40 CEST 2017
## 3683 Thu Nov 02 17:44:55 CET 2017
## 3684 Sat Oct 13 09:50:27 CEST 2018
## 3685 Sun Oct 14 10:45:39 CEST 2018
## 3686 Sun Oct 21 08:07:41 CEST 2018
## 3687 Tue Jan 29 09:26:53 CET 2019
## 3688 Mon Mar 30 16:09:20 CEST 2020
## 3689 Thu Nov 19 15:50:59 CET 2020
## 3690 Tue Mar 15 19:52:12 CET 2016
## 3691 Thu Aug 04 10:16:39 CEST 2016
## 3692 Sat Dec 10 19:05:51 CET 2016
## 3693 Sun Mar 19 18:23:49 CET 2017
## 3694 Sat Jun 10 19:56:40 CEST 2017
## 3695 Thu Nov 02 17:44:55 CET 2017
## 3696 Sat Oct 13 09:50:27 CEST 2018
## 3697 Sun Oct 14 10:45:39 CEST 2018
## 3698 Sun Oct 21 08:07:41 CEST 2018
## 3699 Tue Jan 29 09:26:53 CET 2019
## 3700 Mon Mar 30 16:09:20 CEST 2020
## 3701 Thu Nov 19 15:50:59 CET 2020
## 3702 Tue Mar 15 19:52:12 CET 2016
## 3703 Thu Aug 04 10:16:39 CEST 2016
## 3704 Sat Dec 10 19:05:51 CET 2016
## 3705 Sun Mar 19 18:23:49 CET 2017
## 3706 Sat Jun 10 19:56:40 CEST 2017
## 3707 Thu Nov 02 17:44:55 CET 2017
## 3708 Sat Oct 13 09:50:27 CEST 2018
## 3709 Sun Oct 14 10:45:39 CEST 2018
## 3710 Sun Oct 21 08:07:41 CEST 2018
## 3711 Tue Jan 29 09:26:53 CET 2019
## 3712 Mon Mar 30 16:09:20 CEST 2020
## 3713 Thu Nov 19 15:50:59 CET 2020
## 3714 Tue Mar 15 19:52:12 CET 2016
## 3715 Thu Aug 04 10:16:39 CEST 2016
## 3716 Sat Dec 10 19:05:51 CET 2016
## 3717 Sun Mar 19 18:23:49 CET 2017
## 3718 Sat Jun 10 19:56:40 CEST 2017
## 3719 Thu Nov 02 17:44:55 CET 2017
## 3720 Sat Oct 13 09:50:27 CEST 2018
## 3721 Sun Oct 14 10:45:39 CEST 2018
## 3722 Sun Oct 21 08:07:41 CEST 2018
## 3723 Tue Jan 29 09:26:53 CET 2019
## 3724 Mon Mar 30 16:09:20 CEST 2020
## 3725 Thu Nov 19 15:50:59 CET 2020
## 3726 Tue Mar 15 19:52:12 CET 2016
## 3727 Thu Aug 04 10:16:39 CEST 2016
## 3728 Sat Dec 10 19:05:51 CET 2016
## 3729 Sun Mar 19 18:23:49 CET 2017
## 3730 Sat Jun 10 19:56:40 CEST 2017
## 3731 Thu Nov 02 17:44:55 CET 2017
## 3732 Sat Oct 13 09:50:27 CEST 2018
## 3733 Sun Oct 14 10:45:39 CEST 2018
## 3734 Sun Oct 21 08:07:41 CEST 2018
## 3735 Tue Jan 29 09:26:53 CET 2019
## 3736 Mon Mar 30 16:09:20 CEST 2020
## 3737 Thu Nov 19 15:50:59 CET 2020
## 3738 Tue Mar 15 19:52:12 CET 2016
## 3739 Thu Aug 04 10:16:39 CEST 2016
## 3740 Sat Dec 10 19:05:51 CET 2016
## 3741 Sun Mar 19 18:23:49 CET 2017
## 3742 Sat Jun 10 19:56:40 CEST 2017
## 3743 Thu Nov 02 17:44:55 CET 2017
## 3744 Sat Oct 13 09:50:27 CEST 2018
## 3745 Sun Oct 14 10:45:39 CEST 2018
## 3746 Sun Oct 21 08:07:41 CEST 2018
## 3747 Tue Jan 29 09:26:53 CET 2019
## 3748 Mon Mar 30 16:09:20 CEST 2020
## 3749 Thu Nov 19 15:50:59 CET 2020
## 3750 Tue Mar 15 19:52:12 CET 2016
## 3751 Thu Aug 04 10:16:39 CEST 2016
## 3752 Sat Dec 10 19:05:51 CET 2016
## 3753 Sun Mar 19 18:23:49 CET 2017
## 3754 Sat Jun 10 19:56:40 CEST 2017
## 3755 Thu Nov 02 17:44:55 CET 2017
## 3756 Sat Oct 13 09:50:27 CEST 2018
## 3757 Sun Oct 14 10:45:39 CEST 2018
## 3758 Sun Oct 21 08:07:41 CEST 2018
## 3759 Tue Jan 29 09:26:53 CET 2019
## 3760 Mon Mar 30 16:09:20 CEST 2020
## 3761 Thu Nov 19 15:50:59 CET 2020
## 3762 Tue Mar 15 19:52:12 CET 2016
## 3763 Thu Aug 04 10:16:39 CEST 2016
## 3764 Sat Dec 10 19:05:51 CET 2016
## 3765 Sun Mar 19 18:23:49 CET 2017
## 3766 Sat Jun 10 19:56:40 CEST 2017
## 3767 Thu Nov 02 17:44:55 CET 2017
## 3768 Sat Oct 13 09:50:27 CEST 2018
## 3769 Sun Oct 14 10:45:39 CEST 2018
## 3770 Sun Oct 21 08:07:41 CEST 2018
## 3771 Tue Jan 29 09:26:53 CET 2019
## 3772 Mon Mar 30 16:09:20 CEST 2020
## 3773 Thu Nov 19 15:50:59 CET 2020
## 3774 Tue Mar 15 19:52:12 CET 2016
## 3775 Thu Aug 04 10:16:39 CEST 2016
## 3776 Sat Dec 10 19:05:51 CET 2016
## 3777 Sun Mar 19 18:23:49 CET 2017
## 3778 Sat Jun 10 19:56:40 CEST 2017
## 3779 Thu Nov 02 17:44:55 CET 2017
## 3780 Sat Oct 13 09:50:27 CEST 2018
## 3781 Sun Oct 14 10:45:39 CEST 2018
## 3782 Sun Oct 21 08:07:41 CEST 2018
## 3783 Tue Jan 29 09:26:53 CET 2019
## 3784 Mon Mar 30 16:09:20 CEST 2020
## 3785 Thu Nov 19 15:50:59 CET 2020
## 3786 Tue Mar 15 19:52:12 CET 2016
## 3787 Thu Aug 04 10:16:39 CEST 2016
## 3788 Sat Dec 10 19:05:51 CET 2016
## 3789 Sun Mar 19 18:23:49 CET 2017
## 3790 Sat Jun 10 19:56:40 CEST 2017
## 3791 Thu Nov 02 17:44:55 CET 2017
## 3792 Sat Oct 13 09:50:27 CEST 2018
## 3793 Sun Oct 14 10:45:39 CEST 2018
## 3794 Sun Oct 21 08:07:41 CEST 2018
## 3795 Tue Jan 29 09:26:53 CET 2019
## 3796 Mon Mar 30 16:09:20 CEST 2020
## 3797 Thu Nov 19 15:50:59 CET 2020
## 3798 Tue Mar 15 19:52:12 CET 2016
## 3799 Thu Aug 04 10:16:39 CEST 2016
## 3800 Sat Dec 10 19:05:51 CET 2016
## 3801 Sun Mar 19 18:23:49 CET 2017
## 3802 Sat Jun 10 19:56:40 CEST 2017
## 3803 Thu Nov 02 17:44:55 CET 2017
## 3804 Sat Oct 13 09:50:27 CEST 2018
## 3805 Sun Oct 14 10:45:39 CEST 2018
## 3806 Sun Oct 21 08:07:41 CEST 2018
## 3807 Tue Jan 29 09:26:53 CET 2019
## 3808 Mon Mar 30 16:09:20 CEST 2020
## 3809 Thu Nov 19 15:50:59 CET 2020
## 3810 Tue Mar 15 19:52:12 CET 2016
## 3811 Thu Aug 04 10:16:39 CEST 2016
## 3812 Sat Dec 10 19:05:51 CET 2016
## 3813 Sun Mar 19 18:23:49 CET 2017
## 3814 Sat Jun 10 19:56:40 CEST 2017
## 3815 Thu Nov 02 17:44:55 CET 2017
## 3816 Sat Oct 13 09:50:27 CEST 2018
## 3817 Sun Oct 14 10:45:39 CEST 2018
## 3818 Sun Oct 21 08:07:41 CEST 2018
## 3819 Tue Jan 29 09:26:53 CET 2019
## 3820 Mon Mar 30 16:09:20 CEST 2020
## 3821 Thu Nov 19 15:50:59 CET 2020
## 3822 Tue Mar 15 19:52:12 CET 2016
## 3823 Thu Aug 04 10:16:39 CEST 2016
## 3824 Sat Dec 10 19:05:51 CET 2016
## 3825 Sun Mar 19 18:23:49 CET 2017
## 3826 Sat Jun 10 19:56:40 CEST 2017
## 3827 Thu Nov 02 17:44:55 CET 2017
## 3828 Sat Oct 13 09:50:27 CEST 2018
## 3829 Sun Oct 14 10:45:39 CEST 2018
## 3830 Sun Oct 21 08:07:41 CEST 2018
## 3831 Tue Jan 29 09:26:53 CET 2019
## 3832 Mon Mar 30 16:09:20 CEST 2020
## 3833 Thu Nov 19 15:50:59 CET 2020
## 3834 Tue Mar 15 19:52:12 CET 2016
## 3835 Thu Aug 04 10:16:39 CEST 2016
## 3836 Sat Dec 10 19:05:51 CET 2016
## 3837 Sun Mar 19 18:23:49 CET 2017
## 3838 Sat Jun 10 19:56:40 CEST 2017
## 3839 Thu Nov 02 17:44:55 CET 2017
## 3840 Sat Oct 13 09:50:27 CEST 2018
## 3841 Sun Oct 14 10:45:39 CEST 2018
## 3842 Sun Oct 21 08:07:41 CEST 2018
## 3843 Tue Jan 29 09:26:53 CET 2019
## 3844 Mon Mar 30 16:09:20 CEST 2020
## 3845 Thu Nov 19 15:50:59 CET 2020
## 3846 Tue Mar 15 19:52:12 CET 2016
## testsuite
## 1 com.googlecode.androidannotations.test15.AbstractActivityTest
## 2 com.googlecode.androidannotations.test15.AbstractActivityTest
## 3 com.googlecode.androidannotations.test15.AbstractActivityTest
## 4 com.googlecode.androidannotations.test15.AbstractActivityTest
## 5 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 6 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 7 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 8 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 9 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 10 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 11 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 12 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 13 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 14 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 15 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 16 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 17 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 18 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 19 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 20 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 21 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 22 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 23 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 24 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 25 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 26 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 27 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 28 com.googlecode.androidannotations.test15.TracedActivityTest
## 29 com.googlecode.androidannotations.test15.TracedActivityTest
## 30 com.googlecode.androidannotations.test15.TracedActivityTest
## 31 com.googlecode.androidannotations.test15.TracedActivityTest
## 32 com.googlecode.androidannotations.test15.TracedActivityTest
## 33 com.googlecode.androidannotations.test15.TracedActivityTest
## 34 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 35 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 36 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 37 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 38 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 39 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 40 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 41 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 42 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 43 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 44 com.googlecode.androidannotations.test15.res.ResActivityTest
## 45 com.googlecode.androidannotations.test15.res.ResActivityTest
## 46 com.googlecode.androidannotations.test15.res.ResActivityTest
## 47 com.googlecode.androidannotations.test15.res.ResActivityTest
## 48 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 49 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 50 com.googlecode.androidannotations.test15.AbstractActivityTest
## 51 com.googlecode.androidannotations.test15.AbstractActivityTest
## 52 com.googlecode.androidannotations.test15.AbstractActivityTest
## 53 com.googlecode.androidannotations.test15.AbstractActivityTest
## 54 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 55 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 56 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 57 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 58 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 59 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 60 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 61 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 62 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 63 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 64 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 65 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 66 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 67 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 68 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 69 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 70 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 71 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 72 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 73 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 74 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 75 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 76 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 77 com.googlecode.androidannotations.test15.TracedActivityTest
## 78 com.googlecode.androidannotations.test15.TracedActivityTest
## 79 com.googlecode.androidannotations.test15.TracedActivityTest
## 80 com.googlecode.androidannotations.test15.TracedActivityTest
## 81 com.googlecode.androidannotations.test15.TracedActivityTest
## 82 com.googlecode.androidannotations.test15.TracedActivityTest
## 83 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 84 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 85 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 86 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 87 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 88 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 89 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 90 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 91 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 92 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 93 com.googlecode.androidannotations.test15.res.ResActivityTest
## 94 com.googlecode.androidannotations.test15.res.ResActivityTest
## 95 com.googlecode.androidannotations.test15.res.ResActivityTest
## 96 com.googlecode.androidannotations.test15.res.ResActivityTest
## 97 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 98 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 99 com.googlecode.androidannotations.test15.AbstractActivityTest
## 100 com.googlecode.androidannotations.test15.AbstractActivityTest
## 101 com.googlecode.androidannotations.test15.AbstractActivityTest
## 102 com.googlecode.androidannotations.test15.AbstractActivityTest
## 103 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 104 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 105 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 106 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 107 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 108 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 109 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 110 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 111 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 112 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 113 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 114 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 115 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 116 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 117 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 118 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 119 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 120 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 121 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 122 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 123 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 124 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 125 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 126 com.googlecode.androidannotations.test15.TracedActivityTest
## 127 com.googlecode.androidannotations.test15.TracedActivityTest
## 128 com.googlecode.androidannotations.test15.TracedActivityTest
## 129 com.googlecode.androidannotations.test15.TracedActivityTest
## 130 com.googlecode.androidannotations.test15.TracedActivityTest
## 131 com.googlecode.androidannotations.test15.TracedActivityTest
## 132 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 133 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 134 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 135 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 136 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 137 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 138 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 139 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 140 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 141 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 142 com.googlecode.androidannotations.test15.res.ResActivityTest
## 143 com.googlecode.androidannotations.test15.res.ResActivityTest
## 144 com.googlecode.androidannotations.test15.res.ResActivityTest
## 145 com.googlecode.androidannotations.test15.res.ResActivityTest
## 146 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 147 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 148 com.googlecode.androidannotations.test15.AbstractActivityTest
## 149 com.googlecode.androidannotations.test15.AbstractActivityTest
## 150 com.googlecode.androidannotations.test15.AbstractActivityTest
## 151 com.googlecode.androidannotations.test15.AbstractActivityTest
## 152 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 153 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 154 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 155 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 156 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 157 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 158 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 159 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 160 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 161 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 162 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 163 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 164 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 165 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 166 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 167 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 168 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 169 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 170 com.googlecode.androidannotations.test15.TracedActivityTest
## 171 com.googlecode.androidannotations.test15.TracedActivityTest
## 172 com.googlecode.androidannotations.test15.TracedActivityTest
## 173 com.googlecode.androidannotations.test15.TracedActivityTest
## 174 com.googlecode.androidannotations.test15.TracedActivityTest
## 175 com.googlecode.androidannotations.test15.TracedActivityTest
## 176 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 177 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 178 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 179 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 180 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 181 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 182 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 183 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 184 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 185 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 186 com.googlecode.androidannotations.test15.res.ResActivityTest
## 187 com.googlecode.androidannotations.test15.res.ResActivityTest
## 188 com.googlecode.androidannotations.test15.res.ResActivityTest
## 189 com.googlecode.androidannotations.test15.res.ResActivityTest
## 190 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 191 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 192 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 193 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 194 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 195 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 196 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 197 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 198 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 199 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 200 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 201 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 202 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 203 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 204 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 205 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 206 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 207 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 208 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 209 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 210 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 211 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 212 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 213 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 214 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 215 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 216 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 217 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 218 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 219 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 220 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 221 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 222 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 223 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 224 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 225 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 226 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 227 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 228 com.googlecode.androidannotations.test15.res.ResActivityTest
## 229 com.googlecode.androidannotations.test15.res.ResActivityTest
## 230 com.googlecode.androidannotations.test15.res.ResActivityTest
## 231 com.googlecode.androidannotations.test15.res.ResActivityTest
## 232 com.googlecode.androidannotations.test15.AbstractActivityTest
## 233 com.googlecode.androidannotations.test15.AbstractActivityTest
## 234 com.googlecode.androidannotations.test15.AbstractActivityTest
## 235 com.googlecode.androidannotations.test15.AbstractActivityTest
## 236 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 237 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 238 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 239 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 240 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 241 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 242 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 243 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 244 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 245 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 246 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 247 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 248 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 249 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 250 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 251 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 252 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 253 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 254 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 255 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 256 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 257 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 258 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 259 com.googlecode.androidannotations.test15.TracedActivityTest
## 260 com.googlecode.androidannotations.test15.TracedActivityTest
## 261 com.googlecode.androidannotations.test15.TracedActivityTest
## 262 com.googlecode.androidannotations.test15.TracedActivityTest
## 263 com.googlecode.androidannotations.test15.TracedActivityTest
## 264 com.googlecode.androidannotations.test15.TracedActivityTest
## 265 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 266 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 267 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 268 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 269 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 270 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 271 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 272 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 273 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 274 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 275 com.googlecode.androidannotations.test15.res.ResActivityTest
## 276 com.googlecode.androidannotations.test15.res.ResActivityTest
## 277 com.googlecode.androidannotations.test15.res.ResActivityTest
## 278 com.googlecode.androidannotations.test15.res.ResActivityTest
## 279 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 280 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 281 com.googlecode.androidannotations.test15.AbstractActivityTest
## 282 com.googlecode.androidannotations.test15.AbstractActivityTest
## 283 com.googlecode.androidannotations.test15.AbstractActivityTest
## 284 com.googlecode.androidannotations.test15.AbstractActivityTest
## 285 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 286 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 287 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 288 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 289 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 290 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 291 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 292 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 293 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 294 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 295 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 296 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 297 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 298 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 299 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 300 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 301 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 302 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 303 com.googlecode.androidannotations.test15.TracedActivityTest
## 304 com.googlecode.androidannotations.test15.TracedActivityTest
## 305 com.googlecode.androidannotations.test15.TracedActivityTest
## 306 com.googlecode.androidannotations.test15.TracedActivityTest
## 307 com.googlecode.androidannotations.test15.TracedActivityTest
## 308 com.googlecode.androidannotations.test15.TracedActivityTest
## 309 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 310 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 311 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 312 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 313 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 314 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 315 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 316 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 317 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 318 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 319 com.googlecode.androidannotations.test15.res.ResActivityTest
## 320 com.googlecode.androidannotations.test15.res.ResActivityTest
## 321 com.googlecode.androidannotations.test15.res.ResActivityTest
## 322 com.googlecode.androidannotations.test15.res.ResActivityTest
## 323 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 324 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 325 com.googlecode.androidannotations.test15.AbstractActivityTest
## 326 com.googlecode.androidannotations.test15.AbstractActivityTest
## 327 com.googlecode.androidannotations.test15.AbstractActivityTest
## 328 com.googlecode.androidannotations.test15.AbstractActivityTest
## 329 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 330 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 331 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 332 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 333 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 334 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 335 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 336 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 337 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 338 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 339 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 340 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 341 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 342 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 343 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 344 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 345 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 346 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 347 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 348 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 349 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 350 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 351 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 352 com.googlecode.androidannotations.test15.TracedActivityTest
## 353 com.googlecode.androidannotations.test15.TracedActivityTest
## 354 com.googlecode.androidannotations.test15.TracedActivityTest
## 355 com.googlecode.androidannotations.test15.TracedActivityTest
## 356 com.googlecode.androidannotations.test15.TracedActivityTest
## 357 com.googlecode.androidannotations.test15.TracedActivityTest
## 358 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 359 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 360 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 361 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 362 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 363 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 364 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 365 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 366 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 367 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 368 com.googlecode.androidannotations.test15.res.ResActivityTest
## 369 com.googlecode.androidannotations.test15.res.ResActivityTest
## 370 com.googlecode.androidannotations.test15.res.ResActivityTest
## 371 com.googlecode.androidannotations.test15.res.ResActivityTest
## 372 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 373 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 374 com.googlecode.androidannotations.test15.AbstractActivityTest
## 375 com.googlecode.androidannotations.test15.AbstractActivityTest
## 376 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 377 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 378 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 379 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 380 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 381 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 382 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 383 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 384 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 385 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 386 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 387 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 388 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 389 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 390 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 391 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 392 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 393 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 394 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 395 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 396 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 397 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 398 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 399 com.googlecode.androidannotations.test15.TracedActivityTest
## 400 com.googlecode.androidannotations.test15.TracedActivityTest
## 401 com.googlecode.androidannotations.test15.TracedActivityTest
## 402 com.googlecode.androidannotations.test15.TracedActivityTest
## 403 com.googlecode.androidannotations.test15.TracedActivityTest
## 404 com.googlecode.androidannotations.test15.TracedActivityTest
## 405 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 406 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 407 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 408 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 409 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 410 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 411 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 412 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 413 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 414 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 415 com.googlecode.androidannotations.test15.res.ResActivityTest
## 416 com.googlecode.androidannotations.test15.res.ResActivityTest
## 417 com.googlecode.androidannotations.test15.res.ResActivityTest
## 418 com.googlecode.androidannotations.test15.res.ResActivityTest
## 419 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 420 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 421 com.googlecode.androidannotations.test15.AbstractActivityTest
## 422 com.googlecode.androidannotations.test15.AbstractActivityTest
## 423 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 424 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 425 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 426 com.googlecode.androidannotations.test15.ApplicationInjectedActivityTest
## 427 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 428 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 429 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 430 com.googlecode.androidannotations.test15.ClicksHandledActivityTest
## 431 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 432 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 433 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 434 com.googlecode.androidannotations.test15.EmptyActivityWithLayoutTest
## 435 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 436 com.googlecode.androidannotations.test15.EmptyActivityWithoutLayoutTest
## 437 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 438 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 439 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 440 com.googlecode.androidannotations.test15.FromHtmlActivityTest
## 441 com.googlecode.androidannotations.test15.ItemClicksHandledActivityTest
## 442 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 443 com.googlecode.androidannotations.test15.LongClicksHandledActivityTest
## 444 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 445 com.googlecode.androidannotations.test15.TouchesHandledActivityTest
## 446 com.googlecode.androidannotations.test15.TracedActivityTest
## 447 com.googlecode.androidannotations.test15.TracedActivityTest
## 448 com.googlecode.androidannotations.test15.TracedActivityTest
## 449 com.googlecode.androidannotations.test15.TracedActivityTest
## 450 com.googlecode.androidannotations.test15.TracedActivityTest
## 451 com.googlecode.androidannotations.test15.TracedActivityTest
## 452 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 453 com.googlecode.androidannotations.test15.TransactionalActivityTest
## 454 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 455 com.googlecode.androidannotations.test15.ViewsInjectedActivityTest
## 456 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 457 com.googlecode.androidannotations.test15.menu.OptionsMenuActivityTest
## 458 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 459 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 460 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 461 com.googlecode.androidannotations.test15.prefs.PrefsActivityTest
## 462 com.googlecode.androidannotations.test15.res.ResActivityTest
## 463 com.googlecode.androidannotations.test15.res.ResActivityTest
## 464 com.googlecode.androidannotations.test15.res.ResActivityTest
## 465 com.googlecode.androidannotations.test15.res.ResActivityTest
## 466 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 467 com.googlecode.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 468 org.androidannotations.manifest.AndroidManifestFinderTest
## 469 org.androidannotations.manifest.AndroidManifestFinderTest
## 470 org.androidannotations.test15.AbstractActivityTest
## 471 org.androidannotations.test15.AbstractActivityTest
## 472 org.androidannotations.test15.ApplicationInjectedActivityTest
## 473 org.androidannotations.test15.ApplicationInjectedActivityTest
## 474 org.androidannotations.test15.ApplicationInjectedActivityTest
## 475 org.androidannotations.test15.ApplicationInjectedActivityTest
## 476 org.androidannotations.test15.AwaitingResultFragmentTest
## 477 org.androidannotations.test15.AwaitingResultFragmentTest
## 478 org.androidannotations.test15.BackpressedActivityTest
## 479 org.androidannotations.test15.BackpressedActivityTest
## 480 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 481 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 482 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 483 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 484 org.androidannotations.test15.ClicksHandledActivityTest
## 485 org.androidannotations.test15.ClicksHandledActivityTest
## 486 org.androidannotations.test15.ClicksHandledActivityTest
## 487 org.androidannotations.test15.ClicksHandledActivityTest
## 488 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 489 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 490 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 491 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 492 org.androidannotations.test15.FocusChangeHandledActivityTest
## 493 org.androidannotations.test15.FocusChangeHandledActivityTest
## 494 org.androidannotations.test15.FocusChangeHandledActivityTest
## 495 org.androidannotations.test15.FocusChangeHandledActivityTest
## 496 org.androidannotations.test15.FromHtmlActivityTest
## 497 org.androidannotations.test15.FromHtmlActivityTest
## 498 org.androidannotations.test15.FromHtmlActivityTest
## 499 org.androidannotations.test15.FromHtmlActivityTest
## 500 org.androidannotations.test15.ItemClicksHandledActivityTest
## 501 org.androidannotations.test15.ItemClicksHandledActivityTest
## 502 org.androidannotations.test15.LongClicksHandledActivityTest
## 503 org.androidannotations.test15.LongClicksHandledActivityTest
## 504 org.androidannotations.test15.LongClicksHandledActivityTest
## 505 org.androidannotations.test15.LongClicksHandledActivityTest
## 506 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 507 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 508 org.androidannotations.test15.SSLConnectionTest
## 509 org.androidannotations.test15.SSLConnectionTest
## 510 org.androidannotations.test15.SSLConnectionTest
## 511 org.androidannotations.test15.SSLConnectionTest
## 512 org.androidannotations.test15.TextWatchedActivityTest
## 513 org.androidannotations.test15.TextWatchedActivityTest
## 514 org.androidannotations.test15.TouchesHandledActivityTest
## 515 org.androidannotations.test15.TouchesHandledActivityTest
## 516 org.androidannotations.test15.TouchesHandledActivityTest
## 517 org.androidannotations.test15.TouchesHandledActivityTest
## 518 org.androidannotations.test15.TransactionalActivityTest
## 519 org.androidannotations.test15.TransactionalActivityTest
## 520 org.androidannotations.test15.ViewsInjectedActivityTest
## 521 org.androidannotations.test15.ViewsInjectedActivityTest
## 522 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 523 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 524 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 525 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 526 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 527 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 528 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 529 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 530 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 531 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 532 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 533 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 534 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 535 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 536 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 537 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 538 org.androidannotations.test15.ebean.SomeBeanTest
## 539 org.androidannotations.test15.ebean.SomeBeanTest
## 540 org.androidannotations.test15.ebean.SomeBeanTest
## 541 org.androidannotations.test15.ebean.SomeBeanTest
## 542 org.androidannotations.test15.ebean.SomeSingletonTest
## 543 org.androidannotations.test15.ebean.SomeSingletonTest
## 544 org.androidannotations.test15.ebean.SomeSingletonTest
## 545 org.androidannotations.test15.ebean.SomeSingletonTest
## 546 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 547 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 548 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 549 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 550 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 551 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 552 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 553 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 554 org.androidannotations.test15.efragment.MyListFragmentTest
## 555 org.androidannotations.test15.efragment.MyListFragmentTest
## 556 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 557 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 558 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 559 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 560 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 561 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 562 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 563 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 564 org.androidannotations.test15.eview.CustomButtonTest
## 565 org.androidannotations.test15.eview.CustomButtonTest
## 566 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 567 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 568 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 569 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 570 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 571 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 572 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 573 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 574 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 575 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 576 org.androidannotations.test15.prefs.PrefsActivityTest
## 577 org.androidannotations.test15.prefs.PrefsActivityTest
## 578 org.androidannotations.test15.prefs.PrefsActivityTest
## 579 org.androidannotations.test15.prefs.PrefsActivityTest
## 580 org.androidannotations.test15.res.ResActivityTest
## 581 org.androidannotations.test15.res.ResActivityTest
## 582 org.androidannotations.test15.res.ResActivityTest
## 583 org.androidannotations.test15.res.ResActivityTest
## 584 org.androidannotations.test15.rest.MyServiceTest
## 585 org.androidannotations.test15.rest.MyServiceTest
## 586 org.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 587 org.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 588 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 589 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 590 org.androidannotations.manifest.AndroidManifestFinderTest
## 591 org.androidannotations.manifest.AndroidManifestFinderTest
## 592 org.androidannotations.logger.formatter.FormatterTest
## 593 org.androidannotations.logger.formatter.FormatterTest
## 594 org.androidannotations.logger.formatter.FormatterTest
## 595 org.androidannotations.logger.formatter.FormatterTest
## 596 org.androidannotations.logger.formatter.FormatterTest
## 597 org.androidannotations.logger.formatter.FormatterTest
## 598 org.androidannotations.logger.formatter.FormatterTest
## 599 org.androidannotations.logger.formatter.FormatterTest
## 600 org.androidannotations.logger.formatter.FormatterTest
## 601 org.androidannotations.logger.formatter.FormatterTest
## 602 org.androidannotations.logger.formatter.FormatterTest
## 603 org.androidannotations.logger.formatter.FormatterTest
## 604 org.androidannotations.logger.formatter.FormatterTest
## 605 org.androidannotations.logger.formatter.FormatterTest
## 606 org.androidannotations.logger.LoggerTest
## 607 org.androidannotations.logger.LoggerTest
## 608 org.androidannotations.logger.LoggerTest
## 609 org.androidannotations.logger.LoggerTest
## 610 org.androidannotations.logger.LoggerTest
## 611 org.androidannotations.logger.LoggerTest
## 612 org.androidannotations.logger.LoggerTest
## 613 org.androidannotations.logger.LoggerTest
## 614 org.androidannotations.logger.LoggerTest
## 615 org.androidannotations.logger.LoggerTest
## 616 org.androidannotations.logger.LoggerTest
## 617 org.androidannotations.logger.LoggerTest
## 618 org.androidannotations.logger.LoggerTest
## 619 org.androidannotations.logger.LoggerTest
## 620 org.androidannotations.test15.AbstractActivityTest
## 621 org.androidannotations.test15.AbstractActivityTest
## 622 org.androidannotations.test15.ApplicationInjectedActivityTest
## 623 org.androidannotations.test15.ApplicationInjectedActivityTest
## 624 org.androidannotations.test15.ApplicationInjectedActivityTest
## 625 org.androidannotations.test15.ApplicationInjectedActivityTest
## 626 org.androidannotations.test15.AwaitingResultFragmentTest
## 627 org.androidannotations.test15.AwaitingResultFragmentTest
## 628 org.androidannotations.test15.BackpressedActivityTest
## 629 org.androidannotations.test15.BackpressedActivityTest
## 630 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 631 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 632 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 633 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 634 org.androidannotations.test15.ClicksHandledActivityTest
## 635 org.androidannotations.test15.ClicksHandledActivityTest
## 636 org.androidannotations.test15.ClicksHandledActivityTest
## 637 org.androidannotations.test15.ClicksHandledActivityTest
## 638 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 639 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 640 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 641 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 642 org.androidannotations.test15.FocusChangeHandledActivityTest
## 643 org.androidannotations.test15.FocusChangeHandledActivityTest
## 644 org.androidannotations.test15.FocusChangeHandledActivityTest
## 645 org.androidannotations.test15.FocusChangeHandledActivityTest
## 646 org.androidannotations.test15.FromHtmlActivityTest
## 647 org.androidannotations.test15.FromHtmlActivityTest
## 648 org.androidannotations.test15.FromHtmlActivityTest
## 649 org.androidannotations.test15.FromHtmlActivityTest
## 650 org.androidannotations.test15.ItemClicksHandledActivityTest
## 651 org.androidannotations.test15.ItemClicksHandledActivityTest
## 652 org.androidannotations.test15.LongClicksHandledActivityTest
## 653 org.androidannotations.test15.LongClicksHandledActivityTest
## 654 org.androidannotations.test15.LongClicksHandledActivityTest
## 655 org.androidannotations.test15.LongClicksHandledActivityTest
## 656 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 657 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 658 org.androidannotations.test15.SSLConnectionTest
## 659 org.androidannotations.test15.SSLConnectionTest
## 660 org.androidannotations.test15.SSLConnectionTest
## 661 org.androidannotations.test15.SSLConnectionTest
## 662 org.androidannotations.test15.TextWatchedActivityTest
## 663 org.androidannotations.test15.TextWatchedActivityTest
## 664 org.androidannotations.test15.TouchesHandledActivityTest
## 665 org.androidannotations.test15.TouchesHandledActivityTest
## 666 org.androidannotations.test15.TouchesHandledActivityTest
## 667 org.androidannotations.test15.TouchesHandledActivityTest
## 668 org.androidannotations.test15.TransactionalActivityTest
## 669 org.androidannotations.test15.TransactionalActivityTest
## 670 org.androidannotations.test15.ViewsInjectedActivityTest
## 671 org.androidannotations.test15.ViewsInjectedActivityTest
## 672 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 673 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 674 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 675 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 676 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 677 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 678 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 679 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 680 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 681 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 682 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 683 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 684 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 685 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 686 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 687 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 688 org.androidannotations.test15.ebean.SomeBeanTest
## 689 org.androidannotations.test15.ebean.SomeBeanTest
## 690 org.androidannotations.test15.ebean.SomeBeanTest
## 691 org.androidannotations.test15.ebean.SomeBeanTest
## 692 org.androidannotations.test15.ebean.SomeSingletonTest
## 693 org.androidannotations.test15.ebean.SomeSingletonTest
## 694 org.androidannotations.test15.ebean.SomeSingletonTest
## 695 org.androidannotations.test15.ebean.SomeSingletonTest
## 696 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 697 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 698 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 699 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 700 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 701 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 702 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 703 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 704 org.androidannotations.test15.efragment.MyListFragmentTest
## 705 org.androidannotations.test15.efragment.MyListFragmentTest
## 706 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 707 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 708 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 709 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 710 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 711 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 712 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 713 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 714 org.androidannotations.test15.eview.CustomButtonTest
## 715 org.androidannotations.test15.eview.CustomButtonTest
## 716 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 717 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 718 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 719 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 720 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 721 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 722 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 723 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 724 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 725 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 726 org.androidannotations.test15.prefs.PrefsActivityTest
## 727 org.androidannotations.test15.prefs.PrefsActivityTest
## 728 org.androidannotations.test15.prefs.PrefsActivityTest
## 729 org.androidannotations.test15.prefs.PrefsActivityTest
## 730 org.androidannotations.test15.res.ResActivityTest
## 731 org.androidannotations.test15.res.ResActivityTest
## 732 org.androidannotations.test15.res.ResActivityTest
## 733 org.androidannotations.test15.res.ResActivityTest
## 734 org.androidannotations.test15.rest.MyServiceTest
## 735 org.androidannotations.test15.rest.MyServiceTest
## 736 org.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 737 org.androidannotations.test15.roboguice.RobolectricSampleTestModule
## 738 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 739 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 740 org.androidannotations.manifest.AndroidManifestFinderTest
## 741 org.androidannotations.manifest.AndroidManifestFinderTest
## 742 org.androidannotations.helper.ValidatorParameterHelperTest
## 743 org.androidannotations.helper.ValidatorParameterHelperTest
## 744 org.androidannotations.helper.ValidatorParameterHelperTest
## 745 org.androidannotations.helper.ValidatorParameterHelperTest
## 746 org.androidannotations.helper.ValidatorParameterHelperTest
## 747 org.androidannotations.helper.ValidatorParameterHelperTest
## 748 org.androidannotations.helper.ValidatorParameterHelperTest
## 749 org.androidannotations.helper.ValidatorParameterHelperTest
## 750 org.androidannotations.helper.ValidatorParameterHelperTest
## 751 org.androidannotations.helper.ValidatorParameterHelperTest
## 752 org.androidannotations.helper.ValidatorParameterHelperTest
## 753 org.androidannotations.helper.ValidatorParameterHelperTest
## 754 org.androidannotations.logger.formatter.FormatterTest
## 755 org.androidannotations.logger.formatter.FormatterTest
## 756 org.androidannotations.logger.formatter.FormatterTest
## 757 org.androidannotations.logger.formatter.FormatterTest
## 758 org.androidannotations.logger.formatter.FormatterTest
## 759 org.androidannotations.logger.formatter.FormatterTest
## 760 org.androidannotations.logger.formatter.FormatterTest
## 761 org.androidannotations.logger.formatter.FormatterTest
## 762 org.androidannotations.logger.formatter.FormatterTest
## 763 org.androidannotations.logger.formatter.FormatterTest
## 764 org.androidannotations.logger.formatter.FormatterTest
## 765 org.androidannotations.logger.formatter.FormatterTest
## 766 org.androidannotations.logger.formatter.FormatterTest
## 767 org.androidannotations.logger.formatter.FormatterTest
## 768 org.androidannotations.logger.LoggerTest
## 769 org.androidannotations.logger.LoggerTest
## 770 org.androidannotations.logger.LoggerTest
## 771 org.androidannotations.logger.LoggerTest
## 772 org.androidannotations.logger.LoggerTest
## 773 org.androidannotations.logger.LoggerTest
## 774 org.androidannotations.logger.LoggerTest
## 775 org.androidannotations.logger.LoggerTest
## 776 org.androidannotations.logger.LoggerTest
## 777 org.androidannotations.logger.LoggerTest
## 778 org.androidannotations.logger.LoggerTest
## 779 org.androidannotations.logger.LoggerTest
## 780 org.androidannotations.logger.LoggerTest
## 781 org.androidannotations.logger.LoggerTest
## 782 org.androidannotations.test15.AbstractActivityTest
## 783 org.androidannotations.test15.AbstractActivityTest
## 784 org.androidannotations.test15.ApplicationInjectedActivityTest
## 785 org.androidannotations.test15.ApplicationInjectedActivityTest
## 786 org.androidannotations.test15.ApplicationInjectedActivityTest
## 787 org.androidannotations.test15.ApplicationInjectedActivityTest
## 788 org.androidannotations.test15.AwaitingResultFragmentTest
## 789 org.androidannotations.test15.AwaitingResultFragmentTest
## 790 org.androidannotations.test15.BackpressedActivityTest
## 791 org.androidannotations.test15.BackpressedActivityTest
## 792 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 793 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 794 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 795 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 796 org.androidannotations.test15.ClicksHandledActivityTest
## 797 org.androidannotations.test15.ClicksHandledActivityTest
## 798 org.androidannotations.test15.ClicksHandledActivityTest
## 799 org.androidannotations.test15.ClicksHandledActivityTest
## 800 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 801 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 802 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 803 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 804 org.androidannotations.test15.FocusChangeHandledActivityTest
## 805 org.androidannotations.test15.FocusChangeHandledActivityTest
## 806 org.androidannotations.test15.FocusChangeHandledActivityTest
## 807 org.androidannotations.test15.FocusChangeHandledActivityTest
## 808 org.androidannotations.test15.FromHtmlActivityTest
## 809 org.androidannotations.test15.FromHtmlActivityTest
## 810 org.androidannotations.test15.FromHtmlActivityTest
## 811 org.androidannotations.test15.FromHtmlActivityTest
## 812 org.androidannotations.test15.ItemClicksHandledActivityTest
## 813 org.androidannotations.test15.ItemClicksHandledActivityTest
## 814 org.androidannotations.test15.LongClicksHandledActivityTest
## 815 org.androidannotations.test15.LongClicksHandledActivityTest
## 816 org.androidannotations.test15.LongClicksHandledActivityTest
## 817 org.androidannotations.test15.LongClicksHandledActivityTest
## 818 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 819 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 820 org.androidannotations.test15.SSLConnectionTest
## 821 org.androidannotations.test15.SSLConnectionTest
## 822 org.androidannotations.test15.SSLConnectionTest
## 823 org.androidannotations.test15.SSLConnectionTest
## 824 org.androidannotations.test15.TextWatchedActivityTest
## 825 org.androidannotations.test15.TextWatchedActivityTest
## 826 org.androidannotations.test15.TouchesHandledActivityTest
## 827 org.androidannotations.test15.TouchesHandledActivityTest
## 828 org.androidannotations.test15.TouchesHandledActivityTest
## 829 org.androidannotations.test15.TouchesHandledActivityTest
## 830 org.androidannotations.test15.TransactionalActivityTest
## 831 org.androidannotations.test15.TransactionalActivityTest
## 832 org.androidannotations.test15.ViewsInjectedActivityTest
## 833 org.androidannotations.test15.ViewsInjectedActivityTest
## 834 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 835 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 836 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 837 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 838 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 839 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 840 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 841 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 842 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 843 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 844 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 845 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 846 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 847 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 848 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 849 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 850 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 851 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 852 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 853 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 854 org.androidannotations.test15.ebean.SomeBeanTest
## 855 org.androidannotations.test15.ebean.SomeBeanTest
## 856 org.androidannotations.test15.ebean.SomeBeanTest
## 857 org.androidannotations.test15.ebean.SomeBeanTest
## 858 org.androidannotations.test15.ebean.SomeSingletonTest
## 859 org.androidannotations.test15.ebean.SomeSingletonTest
## 860 org.androidannotations.test15.ebean.SomeSingletonTest
## 861 org.androidannotations.test15.ebean.SomeSingletonTest
## 862 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 863 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 864 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 865 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 866 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 867 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 868 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 869 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 870 org.androidannotations.test15.efragment.MyListFragmentTest
## 871 org.androidannotations.test15.efragment.MyListFragmentTest
## 872 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 873 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 874 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 875 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 876 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 877 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 878 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 879 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 880 org.androidannotations.test15.eview.CustomButtonTest
## 881 org.androidannotations.test15.eview.CustomButtonTest
## 882 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 883 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 884 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 885 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 886 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 887 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 888 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 889 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 890 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 891 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 892 org.androidannotations.test15.prefs.PrefsActivityTest
## 893 org.androidannotations.test15.prefs.PrefsActivityTest
## 894 org.androidannotations.test15.prefs.PrefsActivityTest
## 895 org.androidannotations.test15.prefs.PrefsActivityTest
## 896 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 897 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 898 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 899 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 900 org.androidannotations.test15.res.ResActivityTest
## 901 org.androidannotations.test15.res.ResActivityTest
## 902 org.androidannotations.test15.res.ResActivityTest
## 903 org.androidannotations.test15.res.ResActivityTest
## 904 org.androidannotations.test15.rest.MyServiceTest
## 905 org.androidannotations.test15.rest.MyServiceTest
## 906 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 907 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 908 org.androidannotations.test15.trace.TracedActivityTest
## 909 org.androidannotations.test15.trace.TracedActivityTest
## 910 org.androidannotations.test15.trace.TracedActivityTest
## 911 org.androidannotations.test15.trace.TracedActivityTest
## 912 org.androidannotations.manifest.AndroidManifestFinderTest
## 913 org.androidannotations.manifest.AndroidManifestFinderTest
## 914 org.androidannotations.helper.ValidatorParameterHelperTest
## 915 org.androidannotations.helper.ValidatorParameterHelperTest
## 916 org.androidannotations.helper.ValidatorParameterHelperTest
## 917 org.androidannotations.helper.ValidatorParameterHelperTest
## 918 org.androidannotations.helper.ValidatorParameterHelperTest
## 919 org.androidannotations.helper.ValidatorParameterHelperTest
## 920 org.androidannotations.helper.ValidatorParameterHelperTest
## 921 org.androidannotations.helper.ValidatorParameterHelperTest
## 922 org.androidannotations.helper.ValidatorParameterHelperTest
## 923 org.androidannotations.helper.ValidatorParameterHelperTest
## 924 org.androidannotations.helper.ValidatorParameterHelperTest
## 925 org.androidannotations.helper.ValidatorParameterHelperTest
## 926 org.androidannotations.logger.formatter.FormatterTest
## 927 org.androidannotations.logger.formatter.FormatterTest
## 928 org.androidannotations.logger.formatter.FormatterTest
## 929 org.androidannotations.logger.formatter.FormatterTest
## 930 org.androidannotations.logger.formatter.FormatterTest
## 931 org.androidannotations.logger.formatter.FormatterTest
## 932 org.androidannotations.logger.formatter.FormatterTest
## 933 org.androidannotations.logger.formatter.FormatterTest
## 934 org.androidannotations.logger.formatter.FormatterTest
## 935 org.androidannotations.logger.formatter.FormatterTest
## 936 org.androidannotations.logger.formatter.FormatterTest
## 937 org.androidannotations.logger.formatter.FormatterTest
## 938 org.androidannotations.logger.formatter.FormatterTest
## 939 org.androidannotations.logger.formatter.FormatterTest
## 940 org.androidannotations.logger.LoggerTest
## 941 org.androidannotations.logger.LoggerTest
## 942 org.androidannotations.logger.LoggerTest
## 943 org.androidannotations.logger.LoggerTest
## 944 org.androidannotations.logger.LoggerTest
## 945 org.androidannotations.logger.LoggerTest
## 946 org.androidannotations.logger.LoggerTest
## 947 org.androidannotations.logger.LoggerTest
## 948 org.androidannotations.logger.LoggerTest
## 949 org.androidannotations.logger.LoggerTest
## 950 org.androidannotations.logger.LoggerTest
## 951 org.androidannotations.logger.LoggerTest
## 952 org.androidannotations.logger.LoggerTest
## 953 org.androidannotations.logger.LoggerTest
## 954 org.androidannotations.test15.AbstractActivityTest
## 955 org.androidannotations.test15.AbstractActivityTest
## 956 org.androidannotations.test15.ApplicationInjectedActivityTest
## 957 org.androidannotations.test15.ApplicationInjectedActivityTest
## 958 org.androidannotations.test15.ApplicationInjectedActivityTest
## 959 org.androidannotations.test15.ApplicationInjectedActivityTest
## 960 org.androidannotations.test15.AwaitingResultFragmentTest
## 961 org.androidannotations.test15.AwaitingResultFragmentTest
## 962 org.androidannotations.test15.BackpressedActivityTest
## 963 org.androidannotations.test15.BackpressedActivityTest
## 964 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 965 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 966 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 967 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 968 org.androidannotations.test15.ClicksHandledActivityTest
## 969 org.androidannotations.test15.ClicksHandledActivityTest
## 970 org.androidannotations.test15.ClicksHandledActivityTest
## 971 org.androidannotations.test15.ClicksHandledActivityTest
## 972 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 973 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 974 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 975 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 976 org.androidannotations.test15.FocusChangeHandledActivityTest
## 977 org.androidannotations.test15.FocusChangeHandledActivityTest
## 978 org.androidannotations.test15.FocusChangeHandledActivityTest
## 979 org.androidannotations.test15.FocusChangeHandledActivityTest
## 980 org.androidannotations.test15.FromHtmlActivityTest
## 981 org.androidannotations.test15.FromHtmlActivityTest
## 982 org.androidannotations.test15.FromHtmlActivityTest
## 983 org.androidannotations.test15.FromHtmlActivityTest
## 984 org.androidannotations.test15.ItemClicksHandledActivityTest
## 985 org.androidannotations.test15.ItemClicksHandledActivityTest
## 986 org.androidannotations.test15.LongClicksHandledActivityTest
## 987 org.androidannotations.test15.LongClicksHandledActivityTest
## 988 org.androidannotations.test15.LongClicksHandledActivityTest
## 989 org.androidannotations.test15.LongClicksHandledActivityTest
## 990 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 991 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 992 org.androidannotations.test15.SSLConnectionTest
## 993 org.androidannotations.test15.SSLConnectionTest
## 994 org.androidannotations.test15.SSLConnectionTest
## 995 org.androidannotations.test15.SSLConnectionTest
## 996 org.androidannotations.test15.TextWatchedActivityTest
## 997 org.androidannotations.test15.TextWatchedActivityTest
## 998 org.androidannotations.test15.TouchesHandledActivityTest
## 999 org.androidannotations.test15.TouchesHandledActivityTest
## 1000 org.androidannotations.test15.TouchesHandledActivityTest
## 1001 org.androidannotations.test15.TouchesHandledActivityTest
## 1002 org.androidannotations.test15.TransactionalActivityTest
## 1003 org.androidannotations.test15.TransactionalActivityTest
## 1004 org.androidannotations.test15.ViewsInjectedActivityTest
## 1005 org.androidannotations.test15.ViewsInjectedActivityTest
## 1006 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1007 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1008 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1009 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1010 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1011 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1012 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1013 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1014 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1015 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1016 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1017 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1018 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1019 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1020 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1021 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1022 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1023 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1024 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1025 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1026 org.androidannotations.test15.ebean.SomeBeanTest
## 1027 org.androidannotations.test15.ebean.SomeBeanTest
## 1028 org.androidannotations.test15.ebean.SomeBeanTest
## 1029 org.androidannotations.test15.ebean.SomeBeanTest
## 1030 org.androidannotations.test15.ebean.SomeSingletonTest
## 1031 org.androidannotations.test15.ebean.SomeSingletonTest
## 1032 org.androidannotations.test15.ebean.SomeSingletonTest
## 1033 org.androidannotations.test15.ebean.SomeSingletonTest
## 1034 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1035 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1036 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1037 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1038 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1039 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1040 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1041 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1042 org.androidannotations.test15.efragment.MyListFragmentTest
## 1043 org.androidannotations.test15.efragment.MyListFragmentTest
## 1044 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1045 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1046 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1047 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1048 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1049 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1050 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1051 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1052 org.androidannotations.test15.eview.CustomButtonTest
## 1053 org.androidannotations.test15.eview.CustomButtonTest
## 1054 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1055 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1056 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1057 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1058 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1059 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1060 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1061 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1062 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1063 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1064 org.androidannotations.test15.prefs.PrefsActivityTest
## 1065 org.androidannotations.test15.prefs.PrefsActivityTest
## 1066 org.androidannotations.test15.prefs.PrefsActivityTest
## 1067 org.androidannotations.test15.prefs.PrefsActivityTest
## 1068 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1069 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1070 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1071 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1072 org.androidannotations.test15.res.ResActivityTest
## 1073 org.androidannotations.test15.res.ResActivityTest
## 1074 org.androidannotations.test15.res.ResActivityTest
## 1075 org.androidannotations.test15.res.ResActivityTest
## 1076 org.androidannotations.test15.rest.MyServiceTest
## 1077 org.androidannotations.test15.rest.MyServiceTest
## 1078 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1079 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1080 org.androidannotations.test15.trace.TracedActivityTest
## 1081 org.androidannotations.test15.trace.TracedActivityTest
## 1082 org.androidannotations.test15.trace.TracedActivityTest
## 1083 org.androidannotations.test15.trace.TracedActivityTest
## 1084 org.androidannotations.manifest.AndroidManifestFinderTest
## 1085 org.androidannotations.manifest.AndroidManifestFinderTest
## 1086 org.androidannotations.helper.ValidatorParameterHelperTest
## 1087 org.androidannotations.helper.ValidatorParameterHelperTest
## 1088 org.androidannotations.helper.ValidatorParameterHelperTest
## 1089 org.androidannotations.helper.ValidatorParameterHelperTest
## 1090 org.androidannotations.helper.ValidatorParameterHelperTest
## 1091 org.androidannotations.helper.ValidatorParameterHelperTest
## 1092 org.androidannotations.helper.ValidatorParameterHelperTest
## 1093 org.androidannotations.helper.ValidatorParameterHelperTest
## 1094 org.androidannotations.helper.ValidatorParameterHelperTest
## 1095 org.androidannotations.helper.ValidatorParameterHelperTest
## 1096 org.androidannotations.helper.ValidatorParameterHelperTest
## 1097 org.androidannotations.helper.ValidatorParameterHelperTest
## 1098 org.androidannotations.logger.formatter.FormatterTest
## 1099 org.androidannotations.logger.formatter.FormatterTest
## 1100 org.androidannotations.logger.formatter.FormatterTest
## 1101 org.androidannotations.logger.formatter.FormatterTest
## 1102 org.androidannotations.logger.formatter.FormatterTest
## 1103 org.androidannotations.logger.formatter.FormatterTest
## 1104 org.androidannotations.logger.formatter.FormatterTest
## 1105 org.androidannotations.logger.formatter.FormatterTest
## 1106 org.androidannotations.logger.formatter.FormatterTest
## 1107 org.androidannotations.logger.formatter.FormatterTest
## 1108 org.androidannotations.logger.formatter.FormatterTest
## 1109 org.androidannotations.logger.formatter.FormatterTest
## 1110 org.androidannotations.logger.formatter.FormatterTest
## 1111 org.androidannotations.logger.formatter.FormatterTest
## 1112 org.androidannotations.logger.LoggerTest
## 1113 org.androidannotations.logger.LoggerTest
## 1114 org.androidannotations.logger.LoggerTest
## 1115 org.androidannotations.logger.LoggerTest
## 1116 org.androidannotations.logger.LoggerTest
## 1117 org.androidannotations.logger.LoggerTest
## 1118 org.androidannotations.logger.LoggerTest
## 1119 org.androidannotations.logger.LoggerTest
## 1120 org.androidannotations.logger.LoggerTest
## 1121 org.androidannotations.logger.LoggerTest
## 1122 org.androidannotations.logger.LoggerTest
## 1123 org.androidannotations.logger.LoggerTest
## 1124 org.androidannotations.logger.LoggerTest
## 1125 org.androidannotations.logger.LoggerTest
## 1126 org.androidannotations.test15.AbstractActivityTest
## 1127 org.androidannotations.test15.AbstractActivityTest
## 1128 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1129 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1130 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1131 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1132 org.androidannotations.test15.AwaitingResultFragmentTest
## 1133 org.androidannotations.test15.AwaitingResultFragmentTest
## 1134 org.androidannotations.test15.BackpressedActivityTest
## 1135 org.androidannotations.test15.BackpressedActivityTest
## 1136 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1137 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1138 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1139 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1140 org.androidannotations.test15.ClicksHandledActivityTest
## 1141 org.androidannotations.test15.ClicksHandledActivityTest
## 1142 org.androidannotations.test15.ClicksHandledActivityTest
## 1143 org.androidannotations.test15.ClicksHandledActivityTest
## 1144 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1145 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1146 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1147 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1148 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1149 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1150 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1151 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1152 org.androidannotations.test15.FromHtmlActivityTest
## 1153 org.androidannotations.test15.FromHtmlActivityTest
## 1154 org.androidannotations.test15.FromHtmlActivityTest
## 1155 org.androidannotations.test15.FromHtmlActivityTest
## 1156 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1157 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1158 org.androidannotations.test15.LongClicksHandledActivityTest
## 1159 org.androidannotations.test15.LongClicksHandledActivityTest
## 1160 org.androidannotations.test15.LongClicksHandledActivityTest
## 1161 org.androidannotations.test15.LongClicksHandledActivityTest
## 1162 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1163 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1164 org.androidannotations.test15.SSLConnectionTest
## 1165 org.androidannotations.test15.SSLConnectionTest
## 1166 org.androidannotations.test15.SSLConnectionTest
## 1167 org.androidannotations.test15.SSLConnectionTest
## 1168 org.androidannotations.test15.TextWatchedActivityTest
## 1169 org.androidannotations.test15.TextWatchedActivityTest
## 1170 org.androidannotations.test15.TouchesHandledActivityTest
## 1171 org.androidannotations.test15.TouchesHandledActivityTest
## 1172 org.androidannotations.test15.TouchesHandledActivityTest
## 1173 org.androidannotations.test15.TouchesHandledActivityTest
## 1174 org.androidannotations.test15.TransactionalActivityTest
## 1175 org.androidannotations.test15.TransactionalActivityTest
## 1176 org.androidannotations.test15.ViewsInjectedActivityTest
## 1177 org.androidannotations.test15.ViewsInjectedActivityTest
## 1178 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1179 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1180 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1181 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1182 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1183 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1184 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1185 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1186 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1187 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1188 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1189 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1190 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1191 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1192 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1193 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1194 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1195 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1196 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1197 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1198 org.androidannotations.test15.ebean.SomeBeanTest
## 1199 org.androidannotations.test15.ebean.SomeBeanTest
## 1200 org.androidannotations.test15.ebean.SomeBeanTest
## 1201 org.androidannotations.test15.ebean.SomeBeanTest
## 1202 org.androidannotations.test15.ebean.SomeSingletonTest
## 1203 org.androidannotations.test15.ebean.SomeSingletonTest
## 1204 org.androidannotations.test15.ebean.SomeSingletonTest
## 1205 org.androidannotations.test15.ebean.SomeSingletonTest
## 1206 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1207 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1208 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1209 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1210 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1211 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1212 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1213 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1214 org.androidannotations.test15.efragment.MyListFragmentTest
## 1215 org.androidannotations.test15.efragment.MyListFragmentTest
## 1216 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1217 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1218 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1219 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1220 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1221 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1222 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1223 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1224 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1225 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1226 org.androidannotations.test15.eview.CustomButtonTest
## 1227 org.androidannotations.test15.eview.CustomButtonTest
## 1228 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1229 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1230 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1231 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1232 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1233 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1234 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1235 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1236 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1237 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1238 org.androidannotations.test15.prefs.PrefsActivityTest
## 1239 org.androidannotations.test15.prefs.PrefsActivityTest
## 1240 org.androidannotations.test15.prefs.PrefsActivityTest
## 1241 org.androidannotations.test15.prefs.PrefsActivityTest
## 1242 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1243 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1244 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1245 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1246 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1247 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1248 org.androidannotations.test15.res.ResActivityTest
## 1249 org.androidannotations.test15.res.ResActivityTest
## 1250 org.androidannotations.test15.res.ResActivityTest
## 1251 org.androidannotations.test15.res.ResActivityTest
## 1252 org.androidannotations.test15.rest.MyServiceTest
## 1253 org.androidannotations.test15.rest.MyServiceTest
## 1254 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1255 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1256 org.androidannotations.test15.trace.TracedActivityTest
## 1257 org.androidannotations.test15.trace.TracedActivityTest
## 1258 org.androidannotations.test15.trace.TracedActivityTest
## 1259 org.androidannotations.test15.trace.TracedActivityTest
## 1260 org.androidannotations.manifest.AndroidManifestFinderTest
## 1261 org.androidannotations.manifest.AndroidManifestFinderTest
## 1262 org.androidannotations.helper.ValidatorParameterHelperTest
## 1263 org.androidannotations.helper.ValidatorParameterHelperTest
## 1264 org.androidannotations.helper.ValidatorParameterHelperTest
## 1265 org.androidannotations.helper.ValidatorParameterHelperTest
## 1266 org.androidannotations.helper.ValidatorParameterHelperTest
## 1267 org.androidannotations.helper.ValidatorParameterHelperTest
## 1268 org.androidannotations.helper.ValidatorParameterHelperTest
## 1269 org.androidannotations.helper.ValidatorParameterHelperTest
## 1270 org.androidannotations.helper.ValidatorParameterHelperTest
## 1271 org.androidannotations.helper.ValidatorParameterHelperTest
## 1272 org.androidannotations.helper.ValidatorParameterHelperTest
## 1273 org.androidannotations.helper.ValidatorParameterHelperTest
## 1274 org.androidannotations.logger.formatter.FormatterTest
## 1275 org.androidannotations.logger.formatter.FormatterTest
## 1276 org.androidannotations.logger.formatter.FormatterTest
## 1277 org.androidannotations.logger.formatter.FormatterTest
## 1278 org.androidannotations.logger.formatter.FormatterTest
## 1279 org.androidannotations.logger.formatter.FormatterTest
## 1280 org.androidannotations.logger.formatter.FormatterTest
## 1281 org.androidannotations.logger.formatter.FormatterTest
## 1282 org.androidannotations.logger.formatter.FormatterTest
## 1283 org.androidannotations.logger.formatter.FormatterTest
## 1284 org.androidannotations.logger.formatter.FormatterTest
## 1285 org.androidannotations.logger.formatter.FormatterTest
## 1286 org.androidannotations.logger.formatter.FormatterTest
## 1287 org.androidannotations.logger.formatter.FormatterTest
## 1288 org.androidannotations.logger.LoggerTest
## 1289 org.androidannotations.logger.LoggerTest
## 1290 org.androidannotations.logger.LoggerTest
## 1291 org.androidannotations.logger.LoggerTest
## 1292 org.androidannotations.logger.LoggerTest
## 1293 org.androidannotations.logger.LoggerTest
## 1294 org.androidannotations.logger.LoggerTest
## 1295 org.androidannotations.logger.LoggerTest
## 1296 org.androidannotations.logger.LoggerTest
## 1297 org.androidannotations.logger.LoggerTest
## 1298 org.androidannotations.logger.LoggerTest
## 1299 org.androidannotations.logger.LoggerTest
## 1300 org.androidannotations.logger.LoggerTest
## 1301 org.androidannotations.logger.LoggerTest
## 1302 org.androidannotations.test15.AbstractActivityTest
## 1303 org.androidannotations.test15.AbstractActivityTest
## 1304 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1305 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1306 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1307 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1308 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1309 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1310 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1311 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1312 org.androidannotations.test15.ClicksHandledActivityTest
## 1313 org.androidannotations.test15.ClicksHandledActivityTest
## 1314 org.androidannotations.test15.ClicksHandledActivityTest
## 1315 org.androidannotations.test15.ClicksHandledActivityTest
## 1316 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1317 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1318 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1319 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1320 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1321 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1322 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1323 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1324 org.androidannotations.test15.FromHtmlActivityTest
## 1325 org.androidannotations.test15.FromHtmlActivityTest
## 1326 org.androidannotations.test15.FromHtmlActivityTest
## 1327 org.androidannotations.test15.FromHtmlActivityTest
## 1328 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1329 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1330 org.androidannotations.test15.LongClicksHandledActivityTest
## 1331 org.androidannotations.test15.LongClicksHandledActivityTest
## 1332 org.androidannotations.test15.LongClicksHandledActivityTest
## 1333 org.androidannotations.test15.LongClicksHandledActivityTest
## 1334 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1335 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1336 org.androidannotations.test15.SSLConnectionTest
## 1337 org.androidannotations.test15.SSLConnectionTest
## 1338 org.androidannotations.test15.SSLConnectionTest
## 1339 org.androidannotations.test15.SSLConnectionTest
## 1340 org.androidannotations.test15.TextWatchedActivityTest
## 1341 org.androidannotations.test15.TextWatchedActivityTest
## 1342 org.androidannotations.test15.TextWatchedActivityTest
## 1343 org.androidannotations.test15.TextWatchedActivityTest
## 1344 org.androidannotations.test15.TouchesHandledActivityTest
## 1345 org.androidannotations.test15.TouchesHandledActivityTest
## 1346 org.androidannotations.test15.TouchesHandledActivityTest
## 1347 org.androidannotations.test15.TouchesHandledActivityTest
## 1348 org.androidannotations.test15.TransactionalActivityTest
## 1349 org.androidannotations.test15.TransactionalActivityTest
## 1350 org.androidannotations.test15.ViewsInjectedActivityTest
## 1351 org.androidannotations.test15.ViewsInjectedActivityTest
## 1352 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1353 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1354 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1355 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1356 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1357 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1358 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1359 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1360 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1361 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1362 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1363 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1364 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1365 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1366 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1367 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1368 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1369 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1370 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1371 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1372 org.androidannotations.test15.ebean.SomeBeanTest
## 1373 org.androidannotations.test15.ebean.SomeBeanTest
## 1374 org.androidannotations.test15.ebean.SomeBeanTest
## 1375 org.androidannotations.test15.ebean.SomeBeanTest
## 1376 org.androidannotations.test15.ebean.SomeSingletonTest
## 1377 org.androidannotations.test15.ebean.SomeSingletonTest
## 1378 org.androidannotations.test15.ebean.SomeSingletonTest
## 1379 org.androidannotations.test15.ebean.SomeSingletonTest
## 1380 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1381 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1382 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1383 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1384 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1385 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1386 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1387 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1388 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1389 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1390 org.androidannotations.test15.efragment.MyListFragmentTest
## 1391 org.androidannotations.test15.efragment.MyListFragmentTest
## 1392 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1393 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1394 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1395 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1396 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1397 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1398 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1399 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1400 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1401 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1402 org.androidannotations.test15.eview.CustomButtonTest
## 1403 org.androidannotations.test15.eview.CustomButtonTest
## 1404 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1405 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1406 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1407 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1408 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1409 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1410 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1411 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1412 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1413 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1414 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1415 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1416 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1417 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1418 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1419 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1420 org.androidannotations.test15.prefs.PrefsActivityTest
## 1421 org.androidannotations.test15.prefs.PrefsActivityTest
## 1422 org.androidannotations.test15.prefs.PrefsActivityTest
## 1423 org.androidannotations.test15.prefs.PrefsActivityTest
## 1424 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1425 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1426 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1427 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1428 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1429 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1430 org.androidannotations.test15.res.ResActivityTest
## 1431 org.androidannotations.test15.res.ResActivityTest
## 1432 org.androidannotations.test15.res.ResActivityTest
## 1433 org.androidannotations.test15.res.ResActivityTest
## 1434 org.androidannotations.test15.rest.MyServiceTest
## 1435 org.androidannotations.test15.rest.MyServiceTest
## 1436 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1437 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1438 org.androidannotations.test15.trace.TracedActivityTest
## 1439 org.androidannotations.test15.trace.TracedActivityTest
## 1440 org.androidannotations.test15.trace.TracedActivityTest
## 1441 org.androidannotations.test15.trace.TracedActivityTest
## 1442 org.androidannotations.manifest.AndroidManifestFinderTest
## 1443 org.androidannotations.manifest.AndroidManifestFinderTest
## 1444 org.androidannotations.helper.ValidatorParameterHelperTest
## 1445 org.androidannotations.helper.ValidatorParameterHelperTest
## 1446 org.androidannotations.helper.ValidatorParameterHelperTest
## 1447 org.androidannotations.helper.ValidatorParameterHelperTest
## 1448 org.androidannotations.helper.ValidatorParameterHelperTest
## 1449 org.androidannotations.helper.ValidatorParameterHelperTest
## 1450 org.androidannotations.helper.ValidatorParameterHelperTest
## 1451 org.androidannotations.helper.ValidatorParameterHelperTest
## 1452 org.androidannotations.helper.ValidatorParameterHelperTest
## 1453 org.androidannotations.helper.ValidatorParameterHelperTest
## 1454 org.androidannotations.helper.ValidatorParameterHelperTest
## 1455 org.androidannotations.helper.ValidatorParameterHelperTest
## 1456 org.androidannotations.logger.formatter.FormatterTest
## 1457 org.androidannotations.logger.formatter.FormatterTest
## 1458 org.androidannotations.logger.formatter.FormatterTest
## 1459 org.androidannotations.logger.formatter.FormatterTest
## 1460 org.androidannotations.logger.formatter.FormatterTest
## 1461 org.androidannotations.logger.formatter.FormatterTest
## 1462 org.androidannotations.logger.formatter.FormatterTest
## 1463 org.androidannotations.logger.formatter.FormatterTest
## 1464 org.androidannotations.logger.formatter.FormatterTest
## 1465 org.androidannotations.logger.formatter.FormatterTest
## 1466 org.androidannotations.logger.formatter.FormatterTest
## 1467 org.androidannotations.logger.formatter.FormatterTest
## 1468 org.androidannotations.logger.formatter.FormatterTest
## 1469 org.androidannotations.logger.formatter.FormatterTest
## 1470 org.androidannotations.logger.LoggerTest
## 1471 org.androidannotations.logger.LoggerTest
## 1472 org.androidannotations.logger.LoggerTest
## 1473 org.androidannotations.logger.LoggerTest
## 1474 org.androidannotations.logger.LoggerTest
## 1475 org.androidannotations.logger.LoggerTest
## 1476 org.androidannotations.logger.LoggerTest
## 1477 org.androidannotations.logger.LoggerTest
## 1478 org.androidannotations.logger.LoggerTest
## 1479 org.androidannotations.logger.LoggerTest
## 1480 org.androidannotations.logger.LoggerTest
## 1481 org.androidannotations.logger.LoggerTest
## 1482 org.androidannotations.logger.LoggerTest
## 1483 org.androidannotations.logger.LoggerTest
## 1484 org.androidannotations.test15.AbstractActivityTest
## 1485 org.androidannotations.test15.AbstractActivityTest
## 1486 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1487 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1488 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1489 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1490 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1491 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1492 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1493 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1494 org.androidannotations.test15.ClicksHandledActivityTest
## 1495 org.androidannotations.test15.ClicksHandledActivityTest
## 1496 org.androidannotations.test15.ClicksHandledActivityTest
## 1497 org.androidannotations.test15.ClicksHandledActivityTest
## 1498 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1499 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1500 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1501 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1502 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1503 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1504 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1505 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1506 org.androidannotations.test15.FromHtmlActivityTest
## 1507 org.androidannotations.test15.FromHtmlActivityTest
## 1508 org.androidannotations.test15.FromHtmlActivityTest
## 1509 org.androidannotations.test15.FromHtmlActivityTest
## 1510 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1511 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1512 org.androidannotations.test15.LongClicksHandledActivityTest
## 1513 org.androidannotations.test15.LongClicksHandledActivityTest
## 1514 org.androidannotations.test15.LongClicksHandledActivityTest
## 1515 org.androidannotations.test15.LongClicksHandledActivityTest
## 1516 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1517 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1518 org.androidannotations.test15.SSLConnectionTest
## 1519 org.androidannotations.test15.SSLConnectionTest
## 1520 org.androidannotations.test15.SSLConnectionTest
## 1521 org.androidannotations.test15.SSLConnectionTest
## 1522 org.androidannotations.test15.TextWatchedActivityTest
## 1523 org.androidannotations.test15.TextWatchedActivityTest
## 1524 org.androidannotations.test15.TextWatchedActivityTest
## 1525 org.androidannotations.test15.TextWatchedActivityTest
## 1526 org.androidannotations.test15.TouchesHandledActivityTest
## 1527 org.androidannotations.test15.TouchesHandledActivityTest
## 1528 org.androidannotations.test15.TouchesHandledActivityTest
## 1529 org.androidannotations.test15.TouchesHandledActivityTest
## 1530 org.androidannotations.test15.TransactionalActivityTest
## 1531 org.androidannotations.test15.TransactionalActivityTest
## 1532 org.androidannotations.test15.ViewsInjectedActivityTest
## 1533 org.androidannotations.test15.ViewsInjectedActivityTest
## 1534 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1535 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1536 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1537 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1538 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1539 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1540 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1541 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1542 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1543 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1544 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1545 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1546 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1547 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1548 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1549 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1550 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1551 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1552 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1553 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1554 org.androidannotations.test15.ebean.SomeBeanTest
## 1555 org.androidannotations.test15.ebean.SomeBeanTest
## 1556 org.androidannotations.test15.ebean.SomeBeanTest
## 1557 org.androidannotations.test15.ebean.SomeBeanTest
## 1558 org.androidannotations.test15.ebean.SomeSingletonTest
## 1559 org.androidannotations.test15.ebean.SomeSingletonTest
## 1560 org.androidannotations.test15.ebean.SomeSingletonTest
## 1561 org.androidannotations.test15.ebean.SomeSingletonTest
## 1562 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1563 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1564 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1565 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1566 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1567 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1568 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1569 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1570 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1571 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1572 org.androidannotations.test15.efragment.MyListFragmentTest
## 1573 org.androidannotations.test15.efragment.MyListFragmentTest
## 1574 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1575 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1576 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1577 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1578 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1579 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1580 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1581 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1582 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1583 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1584 org.androidannotations.test15.eview.CustomButtonTest
## 1585 org.androidannotations.test15.eview.CustomButtonTest
## 1586 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1587 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1588 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1589 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1590 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1591 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1592 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1593 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1594 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1595 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1596 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1597 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1598 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1599 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1600 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1601 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1602 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1603 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1604 org.androidannotations.test15.prefs.PrefsActivityTest
## 1605 org.androidannotations.test15.prefs.PrefsActivityTest
## 1606 org.androidannotations.test15.prefs.PrefsActivityTest
## 1607 org.androidannotations.test15.prefs.PrefsActivityTest
## 1608 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1609 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1610 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1611 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1612 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1613 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1614 org.androidannotations.test15.res.ResActivityTest
## 1615 org.androidannotations.test15.res.ResActivityTest
## 1616 org.androidannotations.test15.res.ResActivityTest
## 1617 org.androidannotations.test15.res.ResActivityTest
## 1618 org.androidannotations.test15.rest.MyServiceTest
## 1619 org.androidannotations.test15.rest.MyServiceTest
## 1620 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1621 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1622 org.androidannotations.test15.trace.TracedActivityTest
## 1623 org.androidannotations.test15.trace.TracedActivityTest
## 1624 org.androidannotations.test15.trace.TracedActivityTest
## 1625 org.androidannotations.test15.trace.TracedActivityTest
## 1626 org.androidannotations.manifest.AndroidManifestFinderTest
## 1627 org.androidannotations.manifest.AndroidManifestFinderTest
## 1628 org.androidannotations.helper.ValidatorParameterHelperTest
## 1629 org.androidannotations.helper.ValidatorParameterHelperTest
## 1630 org.androidannotations.helper.ValidatorParameterHelperTest
## 1631 org.androidannotations.helper.ValidatorParameterHelperTest
## 1632 org.androidannotations.helper.ValidatorParameterHelperTest
## 1633 org.androidannotations.helper.ValidatorParameterHelperTest
## 1634 org.androidannotations.helper.ValidatorParameterHelperTest
## 1635 org.androidannotations.helper.ValidatorParameterHelperTest
## 1636 org.androidannotations.helper.ValidatorParameterHelperTest
## 1637 org.androidannotations.helper.ValidatorParameterHelperTest
## 1638 org.androidannotations.helper.ValidatorParameterHelperTest
## 1639 org.androidannotations.helper.ValidatorParameterHelperTest
## 1640 org.androidannotations.logger.formatter.FormatterTest
## 1641 org.androidannotations.logger.formatter.FormatterTest
## 1642 org.androidannotations.logger.formatter.FormatterTest
## 1643 org.androidannotations.logger.formatter.FormatterTest
## 1644 org.androidannotations.logger.formatter.FormatterTest
## 1645 org.androidannotations.logger.formatter.FormatterTest
## 1646 org.androidannotations.logger.formatter.FormatterTest
## 1647 org.androidannotations.logger.formatter.FormatterTest
## 1648 org.androidannotations.logger.formatter.FormatterTest
## 1649 org.androidannotations.logger.formatter.FormatterTest
## 1650 org.androidannotations.logger.formatter.FormatterTest
## 1651 org.androidannotations.logger.formatter.FormatterTest
## 1652 org.androidannotations.logger.formatter.FormatterTest
## 1653 org.androidannotations.logger.formatter.FormatterTest
## 1654 org.androidannotations.logger.LoggerTest
## 1655 org.androidannotations.logger.LoggerTest
## 1656 org.androidannotations.logger.LoggerTest
## 1657 org.androidannotations.logger.LoggerTest
## 1658 org.androidannotations.logger.LoggerTest
## 1659 org.androidannotations.logger.LoggerTest
## 1660 org.androidannotations.logger.LoggerTest
## 1661 org.androidannotations.logger.LoggerTest
## 1662 org.androidannotations.logger.LoggerTest
## 1663 org.androidannotations.logger.LoggerTest
## 1664 org.androidannotations.logger.LoggerTest
## 1665 org.androidannotations.logger.LoggerTest
## 1666 org.androidannotations.logger.LoggerTest
## 1667 org.androidannotations.logger.LoggerTest
## 1668 org.androidannotations.test15.AbstractActivityTest
## 1669 org.androidannotations.test15.AbstractActivityTest
## 1670 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1671 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1672 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1673 org.androidannotations.test15.ApplicationInjectedActivityTest
## 1674 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1675 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1676 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1677 org.androidannotations.test15.CheckedChangeHandledActivityTest
## 1678 org.androidannotations.test15.ClicksHandledActivityTest
## 1679 org.androidannotations.test15.ClicksHandledActivityTest
## 1680 org.androidannotations.test15.ClicksHandledActivityTest
## 1681 org.androidannotations.test15.ClicksHandledActivityTest
## 1682 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1683 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1684 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1685 org.androidannotations.test15.EmptyActivityWithLayoutTest
## 1686 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1687 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1688 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1689 org.androidannotations.test15.FocusChangeHandledActivityTest
## 1690 org.androidannotations.test15.FromHtmlActivityTest
## 1691 org.androidannotations.test15.FromHtmlActivityTest
## 1692 org.androidannotations.test15.FromHtmlActivityTest
## 1693 org.androidannotations.test15.FromHtmlActivityTest
## 1694 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1695 org.androidannotations.test15.ItemClicksHandledActivityTest
## 1696 org.androidannotations.test15.LongClicksHandledActivityTest
## 1697 org.androidannotations.test15.LongClicksHandledActivityTest
## 1698 org.androidannotations.test15.LongClicksHandledActivityTest
## 1699 org.androidannotations.test15.LongClicksHandledActivityTest
## 1700 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1701 org.androidannotations.test15.SeekBarChangeListenedActivityTest
## 1702 org.androidannotations.test15.SSLConnectionTest
## 1703 org.androidannotations.test15.SSLConnectionTest
## 1704 org.androidannotations.test15.SSLConnectionTest
## 1705 org.androidannotations.test15.SSLConnectionTest
## 1706 org.androidannotations.test15.TextWatchedActivityTest
## 1707 org.androidannotations.test15.TextWatchedActivityTest
## 1708 org.androidannotations.test15.TextWatchedActivityTest
## 1709 org.androidannotations.test15.TextWatchedActivityTest
## 1710 org.androidannotations.test15.TouchesHandledActivityTest
## 1711 org.androidannotations.test15.TouchesHandledActivityTest
## 1712 org.androidannotations.test15.TouchesHandledActivityTest
## 1713 org.androidannotations.test15.TouchesHandledActivityTest
## 1714 org.androidannotations.test15.TransactionalActivityTest
## 1715 org.androidannotations.test15.TransactionalActivityTest
## 1716 org.androidannotations.test15.ViewsInjectedActivityTest
## 1717 org.androidannotations.test15.ViewsInjectedActivityTest
## 1718 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1719 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1720 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1721 org.androidannotations.test15.afterextras.AfterExtrasActivityTest
## 1722 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1723 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1724 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1725 org.androidannotations.test15.afterinject.AfterInjectActivityTest
## 1726 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1727 org.androidannotations.test15.afterinject.AfterInjectBeanTest
## 1728 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1729 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1730 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1731 org.androidannotations.test15.afterviews.AfterViewsActivityTest
## 1732 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1733 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1734 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1735 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1736 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1737 org.androidannotations.test15.ebean.BeanInjectedActivityTest
## 1738 org.androidannotations.test15.ebean.SomeBeanTest
## 1739 org.androidannotations.test15.ebean.SomeBeanTest
## 1740 org.androidannotations.test15.ebean.SomeBeanTest
## 1741 org.androidannotations.test15.ebean.SomeBeanTest
## 1742 org.androidannotations.test15.ebean.SomeSingletonTest
## 1743 org.androidannotations.test15.ebean.SomeSingletonTest
## 1744 org.androidannotations.test15.ebean.SomeSingletonTest
## 1745 org.androidannotations.test15.ebean.SomeSingletonTest
## 1746 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1747 org.androidannotations.test15.efragment.ForceLayoutInjectedListFragmentTest
## 1748 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1749 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1750 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1751 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1752 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1753 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1754 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1755 org.androidannotations.test15.efragment.MyFragmentActivityTest
## 1756 org.androidannotations.test15.efragment.MyListFragmentTest
## 1757 org.androidannotations.test15.efragment.MyListFragmentTest
## 1758 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1759 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1760 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1761 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1762 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1763 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1764 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1765 org.androidannotations.test15.efragment.MySupportFragmentActivityTest
## 1766 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1767 org.androidannotations.test15.ereceiver.ReceiverWithActionsTest
## 1768 org.androidannotations.test15.eview.CustomButtonTest
## 1769 org.androidannotations.test15.eview.CustomButtonTest
## 1770 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1771 org.androidannotations.test15.instancestate.SaveInstanceStateActivityTest
## 1772 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1773 org.androidannotations.test15.nonconfiguration.NonConfigurationActivityTest
## 1774 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1775 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1776 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1777 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1778 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1779 org.androidannotations.test15.ormlite.OrmLiteActivityTest
## 1780 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1781 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1782 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1783 org.androidannotations.test15.preference.PreferenceEventsHandledActivityTest
## 1784 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1785 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1786 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1787 org.androidannotations.test15.preference.PreferenceScreenActivityTest
## 1788 org.androidannotations.test15.prefs.PrefsActivityTest
## 1789 org.androidannotations.test15.prefs.PrefsActivityTest
## 1790 org.androidannotations.test15.prefs.PrefsActivityTest
## 1791 org.androidannotations.test15.prefs.PrefsActivityTest
## 1792 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1793 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1794 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1795 org.androidannotations.test15.receiver.ActivityWithReceiverTest
## 1796 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1797 org.androidannotations.test15.receiver.FragmentWithReceiverTest
## 1798 org.androidannotations.test15.res.ResActivityTest
## 1799 org.androidannotations.test15.res.ResActivityTest
## 1800 org.androidannotations.test15.res.ResActivityTest
## 1801 org.androidannotations.test15.res.ResActivityTest
## 1802 org.androidannotations.test15.rest.MyServiceTest
## 1803 org.androidannotations.test15.rest.MyServiceTest
## 1804 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1805 org.androidannotations.test15.sherlock.MySherlockActivityTest
## 1806 org.androidannotations.test15.trace.TracedActivityTest
## 1807 org.androidannotations.test15.trace.TracedActivityTest
## 1808 org.androidannotations.test15.trace.TracedActivityTest
## 1809 org.androidannotations.test15.trace.TracedActivityTest
## 1810 org.androidannotations.helper.ValidatorParameterHelperTest
## 1811 org.androidannotations.helper.ValidatorParameterHelperTest
## 1812 org.androidannotations.helper.ValidatorParameterHelperTest
## 1813 org.androidannotations.helper.ValidatorParameterHelperTest
## 1814 org.androidannotations.helper.ValidatorParameterHelperTest
## 1815 org.androidannotations.helper.ValidatorParameterHelperTest
## 1816 org.androidannotations.helper.ValidatorParameterHelperTest
## 1817 org.androidannotations.helper.ValidatorParameterHelperTest
## 1818 org.androidannotations.helper.ValidatorParameterHelperTest
## 1819 org.androidannotations.helper.ValidatorParameterHelperTest
## 1820 org.androidannotations.helper.ValidatorParameterHelperTest
## 1821 org.androidannotations.helper.ValidatorParameterHelperTest
## 1822 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1823 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1824 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1825 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1826 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1827 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1828 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1829 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1830 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1831 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1832 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1833 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1834 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1835 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1836 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1837 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1838 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1839 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1840 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1841 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1842 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1843 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1844 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1845 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 1846 org.androidannotations.logger.formatter.FormatterTest
## 1847 org.androidannotations.logger.formatter.FormatterTest
## 1848 org.androidannotations.logger.formatter.FormatterTest
## 1849 org.androidannotations.logger.formatter.FormatterTest
## 1850 org.androidannotations.logger.formatter.FormatterTest
## 1851 org.androidannotations.logger.formatter.FormatterTest
## 1852 org.androidannotations.logger.formatter.FormatterTest
## 1853 org.androidannotations.logger.formatter.FormatterTest
## 1854 org.androidannotations.logger.formatter.FormatterTest
## 1855 org.androidannotations.logger.formatter.FormatterTest
## 1856 org.androidannotations.logger.formatter.FormatterTest
## 1857 org.androidannotations.logger.formatter.FormatterTest
## 1858 org.androidannotations.logger.formatter.FormatterTest
## 1859 org.androidannotations.logger.formatter.FormatterTest
## 1860 org.androidannotations.logger.LoggerTest
## 1861 org.androidannotations.logger.LoggerTest
## 1862 org.androidannotations.logger.LoggerTest
## 1863 org.androidannotations.logger.LoggerTest
## 1864 org.androidannotations.logger.LoggerTest
## 1865 org.androidannotations.logger.LoggerTest
## 1866 org.androidannotations.logger.LoggerTest
## 1867 org.androidannotations.logger.LoggerTest
## 1868 org.androidannotations.logger.LoggerTest
## 1869 org.androidannotations.logger.LoggerTest
## 1870 org.androidannotations.logger.LoggerTest
## 1871 org.androidannotations.logger.LoggerTest
## 1872 org.androidannotations.logger.LoggerTest
## 1873 org.androidannotations.logger.LoggerTest
## 1874 org.androidannotations.test.AbstractActivityTest
## 1875 org.androidannotations.test.AbstractActivityTest
## 1876 org.androidannotations.test.AbstractActivityTest
## 1877 org.androidannotations.test.AbstractActivityTest
## 1878 org.androidannotations.test.AbstractActivityTest
## 1879 org.androidannotations.test.AbstractActivityTest
## 1880 org.androidannotations.test.AbstractActivityTest
## 1881 org.androidannotations.test.AbstractActivityTest
## 1882 org.androidannotations.test.AbstractActivityTest
## 1883 org.androidannotations.test.AbstractActivityTest
## 1884 org.androidannotations.test.AbstractActivityTest
## 1885 org.androidannotations.test.AbstractActivityTest
## 1886 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1887 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1888 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1889 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1890 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1891 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1892 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1893 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1894 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1895 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1896 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1897 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1898 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1899 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1900 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1901 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1902 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1903 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1904 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1905 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1906 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1907 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1908 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1909 org.androidannotations.test.CheckedChangeHandledActivityTest
## 1910 org.androidannotations.test.ClicksHandledActivityTest
## 1911 org.androidannotations.test.ClicksHandledActivityTest
## 1912 org.androidannotations.test.ClicksHandledActivityTest
## 1913 org.androidannotations.test.ClicksHandledActivityTest
## 1914 org.androidannotations.test.ClicksHandledActivityTest
## 1915 org.androidannotations.test.ClicksHandledActivityTest
## 1916 org.androidannotations.test.ClicksHandledActivityTest
## 1917 org.androidannotations.test.ClicksHandledActivityTest
## 1918 org.androidannotations.test.ClicksHandledActivityTest
## 1919 org.androidannotations.test.ClicksHandledActivityTest
## 1920 org.androidannotations.test.ClicksHandledActivityTest
## 1921 org.androidannotations.test.ClicksHandledActivityTest
## 1922 org.androidannotations.test.ClicksHandledActivityTest
## 1923 org.androidannotations.test.ClicksHandledActivityTest
## 1924 org.androidannotations.test.ClicksHandledActivityTest
## 1925 org.androidannotations.test.ClicksHandledActivityTest
## 1926 org.androidannotations.test.ClicksHandledActivityTest
## 1927 org.androidannotations.test.ClicksHandledActivityTest
## 1928 org.androidannotations.test.ClicksHandledActivityTest
## 1929 org.androidannotations.test.ClicksHandledActivityTest
## 1930 org.androidannotations.test.ClicksHandledActivityTest
## 1931 org.androidannotations.test.ClicksHandledActivityTest
## 1932 org.androidannotations.test.ClicksHandledActivityTest
## 1933 org.androidannotations.test.ClicksHandledActivityTest
## 1934 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1935 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1936 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1937 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1938 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1939 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1940 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1941 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1942 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1943 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1944 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1945 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1946 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1947 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1948 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1949 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1950 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1951 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1952 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1953 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1954 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1955 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1956 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1957 org.androidannotations.test.EmptyActivityWithLayoutTest
## 1958 org.androidannotations.test.FocusChangeHandledActivityTest
## 1959 org.androidannotations.test.FocusChangeHandledActivityTest
## 1960 org.androidannotations.test.FocusChangeHandledActivityTest
## 1961 org.androidannotations.test.FocusChangeHandledActivityTest
## 1962 org.androidannotations.test.FocusChangeHandledActivityTest
## 1963 org.androidannotations.test.FocusChangeHandledActivityTest
## 1964 org.androidannotations.test.FocusChangeHandledActivityTest
## 1965 org.androidannotations.test.FocusChangeHandledActivityTest
## 1966 org.androidannotations.test.FocusChangeHandledActivityTest
## 1967 org.androidannotations.test.FocusChangeHandledActivityTest
## 1968 org.androidannotations.test.FocusChangeHandledActivityTest
## 1969 org.androidannotations.test.FocusChangeHandledActivityTest
## 1970 org.androidannotations.test.FocusChangeHandledActivityTest
## 1971 org.androidannotations.test.FocusChangeHandledActivityTest
## 1972 org.androidannotations.test.FocusChangeHandledActivityTest
## 1973 org.androidannotations.test.FocusChangeHandledActivityTest
## 1974 org.androidannotations.test.FocusChangeHandledActivityTest
## 1975 org.androidannotations.test.FocusChangeHandledActivityTest
## 1976 org.androidannotations.test.FocusChangeHandledActivityTest
## 1977 org.androidannotations.test.FocusChangeHandledActivityTest
## 1978 org.androidannotations.test.FocusChangeHandledActivityTest
## 1979 org.androidannotations.test.FocusChangeHandledActivityTest
## 1980 org.androidannotations.test.FocusChangeHandledActivityTest
## 1981 org.androidannotations.test.FocusChangeHandledActivityTest
## 1982 org.androidannotations.test.FromHtmlActivityTest
## 1983 org.androidannotations.test.FromHtmlActivityTest
## 1984 org.androidannotations.test.FromHtmlActivityTest
## 1985 org.androidannotations.test.FromHtmlActivityTest
## 1986 org.androidannotations.test.FromHtmlActivityTest
## 1987 org.androidannotations.test.FromHtmlActivityTest
## 1988 org.androidannotations.test.FromHtmlActivityTest
## 1989 org.androidannotations.test.FromHtmlActivityTest
## 1990 org.androidannotations.test.FromHtmlActivityTest
## 1991 org.androidannotations.test.FromHtmlActivityTest
## 1992 org.androidannotations.test.FromHtmlActivityTest
## 1993 org.androidannotations.test.FromHtmlActivityTest
## 1994 org.androidannotations.test.FromHtmlActivityTest
## 1995 org.androidannotations.test.FromHtmlActivityTest
## 1996 org.androidannotations.test.FromHtmlActivityTest
## 1997 org.androidannotations.test.FromHtmlActivityTest
## 1998 org.androidannotations.test.FromHtmlActivityTest
## 1999 org.androidannotations.test.FromHtmlActivityTest
## 2000 org.androidannotations.test.FromHtmlActivityTest
## 2001 org.androidannotations.test.FromHtmlActivityTest
## 2002 org.androidannotations.test.FromHtmlActivityTest
## 2003 org.androidannotations.test.FromHtmlActivityTest
## 2004 org.androidannotations.test.FromHtmlActivityTest
## 2005 org.androidannotations.test.FromHtmlActivityTest
## 2006 org.androidannotations.test.ItemClicksHandledActivityTest
## 2007 org.androidannotations.test.ItemClicksHandledActivityTest
## 2008 org.androidannotations.test.ItemClicksHandledActivityTest
## 2009 org.androidannotations.test.ItemClicksHandledActivityTest
## 2010 org.androidannotations.test.ItemClicksHandledActivityTest
## 2011 org.androidannotations.test.ItemClicksHandledActivityTest
## 2012 org.androidannotations.test.ItemClicksHandledActivityTest
## 2013 org.androidannotations.test.ItemClicksHandledActivityTest
## 2014 org.androidannotations.test.ItemClicksHandledActivityTest
## 2015 org.androidannotations.test.ItemClicksHandledActivityTest
## 2016 org.androidannotations.test.ItemClicksHandledActivityTest
## 2017 org.androidannotations.test.ItemClicksHandledActivityTest
## 2018 org.androidannotations.test.LongClicksHandledActivityTest
## 2019 org.androidannotations.test.LongClicksHandledActivityTest
## 2020 org.androidannotations.test.LongClicksHandledActivityTest
## 2021 org.androidannotations.test.LongClicksHandledActivityTest
## 2022 org.androidannotations.test.LongClicksHandledActivityTest
## 2023 org.androidannotations.test.LongClicksHandledActivityTest
## 2024 org.androidannotations.test.LongClicksHandledActivityTest
## 2025 org.androidannotations.test.LongClicksHandledActivityTest
## 2026 org.androidannotations.test.LongClicksHandledActivityTest
## 2027 org.androidannotations.test.LongClicksHandledActivityTest
## 2028 org.androidannotations.test.LongClicksHandledActivityTest
## 2029 org.androidannotations.test.LongClicksHandledActivityTest
## 2030 org.androidannotations.test.LongClicksHandledActivityTest
## 2031 org.androidannotations.test.LongClicksHandledActivityTest
## 2032 org.androidannotations.test.LongClicksHandledActivityTest
## 2033 org.androidannotations.test.LongClicksHandledActivityTest
## 2034 org.androidannotations.test.LongClicksHandledActivityTest
## 2035 org.androidannotations.test.LongClicksHandledActivityTest
## 2036 org.androidannotations.test.LongClicksHandledActivityTest
## 2037 org.androidannotations.test.LongClicksHandledActivityTest
## 2038 org.androidannotations.test.LongClicksHandledActivityTest
## 2039 org.androidannotations.test.LongClicksHandledActivityTest
## 2040 org.androidannotations.test.LongClicksHandledActivityTest
## 2041 org.androidannotations.test.LongClicksHandledActivityTest
## 2042 org.androidannotations.test.PageChangeListenerActivityTest
## 2043 org.androidannotations.test.PageChangeListenerActivityTest
## 2044 org.androidannotations.test.PageChangeListenerActivityTest
## 2045 org.androidannotations.test.PageChangeListenerActivityTest
## 2046 org.androidannotations.test.PageChangeListenerActivityTest
## 2047 org.androidannotations.test.PageChangeListenerActivityTest
## 2048 org.androidannotations.test.PageChangeListenerActivityTest
## 2049 org.androidannotations.test.PageChangeListenerActivityTest
## 2050 org.androidannotations.test.PageChangeListenerActivityTest
## 2051 org.androidannotations.test.PageChangeListenerActivityTest
## 2052 org.androidannotations.test.PageChangeListenerActivityTest
## 2053 org.androidannotations.test.PageChangeListenerActivityTest
## 2054 org.androidannotations.test.PageChangeListenerActivityTest
## 2055 org.androidannotations.test.PageChangeListenerActivityTest
## 2056 org.androidannotations.test.PageChangeListenerActivityTest
## 2057 org.androidannotations.test.PageChangeListenerActivityTest
## 2058 org.androidannotations.test.PageChangeListenerActivityTest
## 2059 org.androidannotations.test.PageChangeListenerActivityTest
## 2060 org.androidannotations.test.PageChangeListenerActivityTest
## 2061 org.androidannotations.test.PageChangeListenerActivityTest
## 2062 org.androidannotations.test.PageChangeListenerActivityTest
## 2063 org.androidannotations.test.PageChangeListenerActivityTest
## 2064 org.androidannotations.test.PageChangeListenerActivityTest
## 2065 org.androidannotations.test.PageChangeListenerActivityTest
## 2066 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2067 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2068 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2069 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2070 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2071 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2072 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2073 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2074 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2075 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2076 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2077 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2078 org.androidannotations.test.SSLConnectionTest
## 2079 org.androidannotations.test.SSLConnectionTest
## 2080 org.androidannotations.test.SSLConnectionTest
## 2081 org.androidannotations.test.SSLConnectionTest
## 2082 org.androidannotations.test.SSLConnectionTest
## 2083 org.androidannotations.test.SSLConnectionTest
## 2084 org.androidannotations.test.SSLConnectionTest
## 2085 org.androidannotations.test.SSLConnectionTest
## 2086 org.androidannotations.test.SSLConnectionTest
## 2087 org.androidannotations.test.SSLConnectionTest
## 2088 org.androidannotations.test.SSLConnectionTest
## 2089 org.androidannotations.test.SSLConnectionTest
## 2090 org.androidannotations.test.TextWatchedActivityTest
## 2091 org.androidannotations.test.TextWatchedActivityTest
## 2092 org.androidannotations.test.TextWatchedActivityTest
## 2093 org.androidannotations.test.TextWatchedActivityTest
## 2094 org.androidannotations.test.TextWatchedActivityTest
## 2095 org.androidannotations.test.TextWatchedActivityTest
## 2096 org.androidannotations.test.TextWatchedActivityTest
## 2097 org.androidannotations.test.TextWatchedActivityTest
## 2098 org.androidannotations.test.TextWatchedActivityTest
## 2099 org.androidannotations.test.TextWatchedActivityTest
## 2100 org.androidannotations.test.TextWatchedActivityTest
## 2101 org.androidannotations.test.TextWatchedActivityTest
## 2102 org.androidannotations.test.TextWatchedActivityTest
## 2103 org.androidannotations.test.TextWatchedActivityTest
## 2104 org.androidannotations.test.TextWatchedActivityTest
## 2105 org.androidannotations.test.TextWatchedActivityTest
## 2106 org.androidannotations.test.TextWatchedActivityTest
## 2107 org.androidannotations.test.TextWatchedActivityTest
## 2108 org.androidannotations.test.TextWatchedActivityTest
## 2109 org.androidannotations.test.TextWatchedActivityTest
## 2110 org.androidannotations.test.TextWatchedActivityTest
## 2111 org.androidannotations.test.TextWatchedActivityTest
## 2112 org.androidannotations.test.TextWatchedActivityTest
## 2113 org.androidannotations.test.TextWatchedActivityTest
## 2114 org.androidannotations.test.ThreadActivityTest
## 2115 org.androidannotations.test.ThreadActivityTest
## 2116 org.androidannotations.test.ThreadActivityTest
## 2117 org.androidannotations.test.ThreadActivityTest
## 2118 org.androidannotations.test.ThreadActivityTest
## 2119 org.androidannotations.test.ThreadActivityTest
## 2120 org.androidannotations.test.ThreadActivityTest
## 2121 org.androidannotations.test.ThreadActivityTest
## 2122 org.androidannotations.test.ThreadActivityTest
## 2123 org.androidannotations.test.ThreadActivityTest
## 2124 org.androidannotations.test.ThreadActivityTest
## 2125 org.androidannotations.test.ThreadActivityTest
## 2126 org.androidannotations.test.TouchesHandledActivityTest
## 2127 org.androidannotations.test.TouchesHandledActivityTest
## 2128 org.androidannotations.test.TouchesHandledActivityTest
## 2129 org.androidannotations.test.TouchesHandledActivityTest
## 2130 org.androidannotations.test.TouchesHandledActivityTest
## 2131 org.androidannotations.test.TouchesHandledActivityTest
## 2132 org.androidannotations.test.TouchesHandledActivityTest
## 2133 org.androidannotations.test.TouchesHandledActivityTest
## 2134 org.androidannotations.test.TouchesHandledActivityTest
## 2135 org.androidannotations.test.TouchesHandledActivityTest
## 2136 org.androidannotations.test.TouchesHandledActivityTest
## 2137 org.androidannotations.test.TouchesHandledActivityTest
## 2138 org.androidannotations.test.TouchesHandledActivityTest
## 2139 org.androidannotations.test.TouchesHandledActivityTest
## 2140 org.androidannotations.test.TouchesHandledActivityTest
## 2141 org.androidannotations.test.TouchesHandledActivityTest
## 2142 org.androidannotations.test.TouchesHandledActivityTest
## 2143 org.androidannotations.test.TouchesHandledActivityTest
## 2144 org.androidannotations.test.TouchesHandledActivityTest
## 2145 org.androidannotations.test.TouchesHandledActivityTest
## 2146 org.androidannotations.test.TouchesHandledActivityTest
## 2147 org.androidannotations.test.TouchesHandledActivityTest
## 2148 org.androidannotations.test.TouchesHandledActivityTest
## 2149 org.androidannotations.test.TouchesHandledActivityTest
## 2150 org.androidannotations.test.TransactionalActivityTest
## 2151 org.androidannotations.test.TransactionalActivityTest
## 2152 org.androidannotations.test.TransactionalActivityTest
## 2153 org.androidannotations.test.TransactionalActivityTest
## 2154 org.androidannotations.test.TransactionalActivityTest
## 2155 org.androidannotations.test.TransactionalActivityTest
## 2156 org.androidannotations.test.TransactionalActivityTest
## 2157 org.androidannotations.test.TransactionalActivityTest
## 2158 org.androidannotations.test.TransactionalActivityTest
## 2159 org.androidannotations.test.TransactionalActivityTest
## 2160 org.androidannotations.test.TransactionalActivityTest
## 2161 org.androidannotations.test.TransactionalActivityTest
## 2162 org.androidannotations.test.ViewsInjectedActivityTest
## 2163 org.androidannotations.test.ViewsInjectedActivityTest
## 2164 org.androidannotations.test.ViewsInjectedActivityTest
## 2165 org.androidannotations.test.ViewsInjectedActivityTest
## 2166 org.androidannotations.test.ViewsInjectedActivityTest
## 2167 org.androidannotations.test.ViewsInjectedActivityTest
## 2168 org.androidannotations.test.ViewsInjectedActivityTest
## 2169 org.androidannotations.test.ViewsInjectedActivityTest
## 2170 org.androidannotations.test.ViewsInjectedActivityTest
## 2171 org.androidannotations.test.ViewsInjectedActivityTest
## 2172 org.androidannotations.test.ViewsInjectedActivityTest
## 2173 org.androidannotations.test.ViewsInjectedActivityTest
## 2174 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2175 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2176 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2177 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2178 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2179 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2180 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2181 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2182 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2183 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2184 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2185 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2186 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2187 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2188 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2189 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2190 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2191 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2192 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2193 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2194 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2195 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2196 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2197 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 2198 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2199 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2200 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2201 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2202 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2203 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2204 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2205 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2206 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2207 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2208 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2209 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2210 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2211 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2212 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2213 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2214 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2215 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2216 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2217 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2218 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2219 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2220 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2221 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 2222 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2223 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2224 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2225 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2226 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2227 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2228 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2229 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2230 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2231 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2232 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2233 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 2234 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2235 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2236 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2237 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2238 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2239 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2240 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2241 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2242 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2243 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2244 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2245 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2246 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2247 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2248 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2249 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2250 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2251 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2252 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2253 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2254 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2255 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2256 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2257 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 2258 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2259 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2260 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2261 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2262 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2263 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2264 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2265 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2266 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2267 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2268 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2269 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2270 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2271 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2272 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2273 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2274 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2275 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2276 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2277 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2278 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2279 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2280 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2281 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2282 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2283 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2284 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2285 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2286 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2287 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2288 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2289 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2290 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2291 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2292 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2293 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 2294 org.androidannotations.test.ebean.SomeBeanTest
## 2295 org.androidannotations.test.ebean.SomeBeanTest
## 2296 org.androidannotations.test.ebean.SomeBeanTest
## 2297 org.androidannotations.test.ebean.SomeBeanTest
## 2298 org.androidannotations.test.ebean.SomeBeanTest
## 2299 org.androidannotations.test.ebean.SomeBeanTest
## 2300 org.androidannotations.test.ebean.SomeBeanTest
## 2301 org.androidannotations.test.ebean.SomeBeanTest
## 2302 org.androidannotations.test.ebean.SomeBeanTest
## 2303 org.androidannotations.test.ebean.SomeBeanTest
## 2304 org.androidannotations.test.ebean.SomeBeanTest
## 2305 org.androidannotations.test.ebean.SomeBeanTest
## 2306 org.androidannotations.test.ebean.SomeSingletonTest
## 2307 org.androidannotations.test.ebean.SomeSingletonTest
## 2308 org.androidannotations.test.ebean.SomeSingletonTest
## 2309 org.androidannotations.test.ebean.SomeSingletonTest
## 2310 org.androidannotations.test.ebean.SomeSingletonTest
## 2311 org.androidannotations.test.ebean.SomeSingletonTest
## 2312 org.androidannotations.test.ebean.SomeSingletonTest
## 2313 org.androidannotations.test.ebean.SomeSingletonTest
## 2314 org.androidannotations.test.ebean.SomeSingletonTest
## 2315 org.androidannotations.test.ebean.SomeSingletonTest
## 2316 org.androidannotations.test.ebean.SomeSingletonTest
## 2317 org.androidannotations.test.ebean.SomeSingletonTest
## 2318 org.androidannotations.test.ebean.SomeSingletonTest
## 2319 org.androidannotations.test.ebean.SomeSingletonTest
## 2320 org.androidannotations.test.ebean.SomeSingletonTest
## 2321 org.androidannotations.test.ebean.SomeSingletonTest
## 2322 org.androidannotations.test.ebean.SomeSingletonTest
## 2323 org.androidannotations.test.ebean.SomeSingletonTest
## 2324 org.androidannotations.test.ebean.SomeSingletonTest
## 2325 org.androidannotations.test.ebean.SomeSingletonTest
## 2326 org.androidannotations.test.ebean.SomeSingletonTest
## 2327 org.androidannotations.test.ebean.SomeSingletonTest
## 2328 org.androidannotations.test.ebean.SomeSingletonTest
## 2329 org.androidannotations.test.ebean.SomeSingletonTest
## 2330 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2331 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2332 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2333 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2334 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2335 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2336 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2337 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2338 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2339 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2340 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2341 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 2342 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2343 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2344 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2345 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2346 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2347 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2348 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2349 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2350 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2351 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2352 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2353 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2354 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2355 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2356 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2357 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2358 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2359 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2360 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2361 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2362 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2363 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2364 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2365 org.androidannotations.test.efragment.MyFragmentActivityTest
## 2366 org.androidannotations.test.efragment.MyListFragmentTest
## 2367 org.androidannotations.test.efragment.MyListFragmentTest
## 2368 org.androidannotations.test.efragment.MyListFragmentTest
## 2369 org.androidannotations.test.efragment.MyListFragmentTest
## 2370 org.androidannotations.test.efragment.MyListFragmentTest
## 2371 org.androidannotations.test.efragment.MyListFragmentTest
## 2372 org.androidannotations.test.efragment.MyListFragmentTest
## 2373 org.androidannotations.test.efragment.MyListFragmentTest
## 2374 org.androidannotations.test.efragment.MyListFragmentTest
## 2375 org.androidannotations.test.efragment.MyListFragmentTest
## 2376 org.androidannotations.test.efragment.MyListFragmentTest
## 2377 org.androidannotations.test.efragment.MyListFragmentTest
## 2378 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2379 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2380 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2381 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2382 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2383 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2384 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2385 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2386 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2387 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2388 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2389 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2390 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2391 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2392 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2393 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2394 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2395 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2396 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2397 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2398 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2399 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2400 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2401 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2402 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2403 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2404 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2405 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2406 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2407 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2408 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2409 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2410 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2411 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2412 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2413 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2414 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2415 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2416 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2417 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2418 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2419 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2420 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2421 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2422 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2423 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2424 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2425 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 2426 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2427 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2428 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2429 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2430 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2431 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2432 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2433 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2434 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2435 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2436 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2437 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 2438 org.androidannotations.test.eview.CustomButtonTest
## 2439 org.androidannotations.test.eview.CustomButtonTest
## 2440 org.androidannotations.test.eview.CustomButtonTest
## 2441 org.androidannotations.test.eview.CustomButtonTest
## 2442 org.androidannotations.test.eview.CustomButtonTest
## 2443 org.androidannotations.test.eview.CustomButtonTest
## 2444 org.androidannotations.test.eview.CustomButtonTest
## 2445 org.androidannotations.test.eview.CustomButtonTest
## 2446 org.androidannotations.test.eview.CustomButtonTest
## 2447 org.androidannotations.test.eview.CustomButtonTest
## 2448 org.androidannotations.test.eview.CustomButtonTest
## 2449 org.androidannotations.test.eview.CustomButtonTest
## 2450 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2451 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2452 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2453 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2454 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2455 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2456 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2457 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2458 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2459 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2460 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2461 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 2462 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2463 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2464 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2465 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2466 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2467 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2468 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2469 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2470 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2471 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2472 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2473 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 2474 org.androidannotations.test.menu.InjectMenuActivityTest
## 2475 org.androidannotations.test.menu.InjectMenuActivityTest
## 2476 org.androidannotations.test.menu.InjectMenuActivityTest
## 2477 org.androidannotations.test.menu.InjectMenuActivityTest
## 2478 org.androidannotations.test.menu.InjectMenuActivityTest
## 2479 org.androidannotations.test.menu.InjectMenuActivityTest
## 2480 org.androidannotations.test.menu.InjectMenuActivityTest
## 2481 org.androidannotations.test.menu.InjectMenuActivityTest
## 2482 org.androidannotations.test.menu.InjectMenuActivityTest
## 2483 org.androidannotations.test.menu.InjectMenuActivityTest
## 2484 org.androidannotations.test.menu.InjectMenuActivityTest
## 2485 org.androidannotations.test.menu.InjectMenuActivityTest
## 2486 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2487 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2488 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2489 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2490 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2491 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2492 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2493 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2494 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2495 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2496 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2497 org.androidannotations.test.menu.OptionsMenuActivityTest
## 2498 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2499 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2500 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2501 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2502 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2503 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2504 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2505 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2506 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2507 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2508 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2509 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 2510 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2511 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2512 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2513 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2514 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2515 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2516 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2517 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2518 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2519 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 2520 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2521 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2522 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2523 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2524 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2525 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2526 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2527 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2528 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2529 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2530 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2531 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 2532 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2533 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2534 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2535 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2536 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2537 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2538 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2539 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2540 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2541 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 2542 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2543 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2544 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2545 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2546 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2547 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2548 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2549 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2550 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2551 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2552 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2553 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2554 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2555 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2556 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2557 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2558 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2559 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2560 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2561 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2562 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2563 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2564 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2565 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 2566 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2567 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2568 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2569 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2570 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2571 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2572 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2573 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2574 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2575 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2576 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2577 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2578 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2579 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2580 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2581 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2582 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2583 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2584 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2585 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 2586 org.androidannotations.test.prefs.PrefsActivityTest
## 2587 org.androidannotations.test.prefs.PrefsActivityTest
## 2588 org.androidannotations.test.prefs.PrefsActivityTest
## 2589 org.androidannotations.test.prefs.PrefsActivityTest
## 2590 org.androidannotations.test.prefs.PrefsActivityTest
## 2591 org.androidannotations.test.prefs.PrefsActivityTest
## 2592 org.androidannotations.test.prefs.PrefsActivityTest
## 2593 org.androidannotations.test.prefs.PrefsActivityTest
## 2594 org.androidannotations.test.prefs.PrefsActivityTest
## 2595 org.androidannotations.test.prefs.PrefsActivityTest
## 2596 org.androidannotations.test.prefs.PrefsActivityTest
## 2597 org.androidannotations.test.prefs.PrefsActivityTest
## 2598 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2599 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2600 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2601 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2602 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2603 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2604 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2605 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2606 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2607 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2608 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2609 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 2610 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2611 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2612 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2613 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2614 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2615 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2616 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2617 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2618 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2619 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2620 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2621 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 2622 org.androidannotations.test.res.ResActivityTest
## 2623 org.androidannotations.test.res.ResActivityTest
## 2624 org.androidannotations.test.res.ResActivityTest
## 2625 org.androidannotations.test.res.ResActivityTest
## 2626 org.androidannotations.test.res.ResActivityTest
## 2627 org.androidannotations.test.res.ResActivityTest
## 2628 org.androidannotations.test.res.ResActivityTest
## 2629 org.androidannotations.test.res.ResActivityTest
## 2630 org.androidannotations.test.res.ResActivityTest
## 2631 org.androidannotations.test.res.ResActivityTest
## 2632 org.androidannotations.test.res.ResActivityTest
## 2633 org.androidannotations.test.res.ResActivityTest
## 2634 org.androidannotations.test.trace.TracedActivityTest
## 2635 org.androidannotations.test.trace.TracedActivityTest
## 2636 org.androidannotations.test.trace.TracedActivityTest
## 2637 org.androidannotations.test.trace.TracedActivityTest
## 2638 org.androidannotations.test.trace.TracedActivityTest
## 2639 org.androidannotations.test.trace.TracedActivityTest
## 2640 org.androidannotations.test.trace.TracedActivityTest
## 2641 org.androidannotations.test.trace.TracedActivityTest
## 2642 org.androidannotations.test.trace.TracedActivityTest
## 2643 org.androidannotations.test.trace.TracedActivityTest
## 2644 org.androidannotations.test.trace.TracedActivityTest
## 2645 org.androidannotations.test.trace.TracedActivityTest
## 2646 org.androidannotations.test.trace.TracedActivityTest
## 2647 org.androidannotations.test.trace.TracedActivityTest
## 2648 org.androidannotations.test.trace.TracedActivityTest
## 2649 org.androidannotations.test.trace.TracedActivityTest
## 2650 org.androidannotations.test.trace.TracedActivityTest
## 2651 org.androidannotations.test.trace.TracedActivityTest
## 2652 org.androidannotations.test.trace.TracedActivityTest
## 2653 org.androidannotations.test.trace.TracedActivityTest
## 2654 org.androidannotations.test.trace.TracedActivityTest
## 2655 org.androidannotations.test.trace.TracedActivityTest
## 2656 org.androidannotations.test.trace.TracedActivityTest
## 2657 org.androidannotations.test.trace.TracedActivityTest
## 2658 org.androidannotations.rest.spring.test.MyServiceTest
## 2659 org.androidannotations.rest.spring.test.MyServiceTest
## 2660 org.androidannotations.rest.spring.test.MyServiceTest
## 2661 org.androidannotations.rest.spring.test.MyServiceTest
## 2662 org.androidannotations.rest.spring.test.MyServiceTest
## 2663 org.androidannotations.rest.spring.test.MyServiceTest
## 2664 org.androidannotations.rest.spring.test.MyServiceTest
## 2665 org.androidannotations.rest.spring.test.MyServiceTest
## 2666 org.androidannotations.rest.spring.test.MyServiceTest
## 2667 org.androidannotations.rest.spring.test.MyServiceTest
## 2668 org.androidannotations.rest.spring.test.MyServiceTest
## 2669 org.androidannotations.rest.spring.test.MyServiceTest
## 2670 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2671 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2672 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2673 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2674 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2675 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2676 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2677 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2678 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2679 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2680 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2681 org.androidannotations.rest.spring.test.PostRestServiceTest
## 2682 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2683 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2684 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2685 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2686 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2687 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2688 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2689 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2690 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2691 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2692 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2693 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 2694 org.androidannotations.helper.ValidatorParameterHelperTest
## 2695 org.androidannotations.helper.ValidatorParameterHelperTest
## 2696 org.androidannotations.helper.ValidatorParameterHelperTest
## 2697 org.androidannotations.helper.ValidatorParameterHelperTest
## 2698 org.androidannotations.helper.ValidatorParameterHelperTest
## 2699 org.androidannotations.helper.ValidatorParameterHelperTest
## 2700 org.androidannotations.helper.ValidatorParameterHelperTest
## 2701 org.androidannotations.helper.ValidatorParameterHelperTest
## 2702 org.androidannotations.helper.ValidatorParameterHelperTest
## 2703 org.androidannotations.helper.ValidatorParameterHelperTest
## 2704 org.androidannotations.helper.ValidatorParameterHelperTest
## 2705 org.androidannotations.helper.ValidatorParameterHelperTest
## 2706 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2707 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2708 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2709 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2710 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2711 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2712 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2713 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2714 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2715 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2716 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2717 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2718 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2719 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2720 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2721 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2722 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2723 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2724 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2725 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2726 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2727 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2728 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2729 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 2730 org.androidannotations.logger.formatter.FormatterTest
## 2731 org.androidannotations.logger.formatter.FormatterTest
## 2732 org.androidannotations.logger.formatter.FormatterTest
## 2733 org.androidannotations.logger.formatter.FormatterTest
## 2734 org.androidannotations.logger.formatter.FormatterTest
## 2735 org.androidannotations.logger.formatter.FormatterTest
## 2736 org.androidannotations.logger.formatter.FormatterTest
## 2737 org.androidannotations.logger.formatter.FormatterTest
## 2738 org.androidannotations.logger.formatter.FormatterTest
## 2739 org.androidannotations.logger.formatter.FormatterTest
## 2740 org.androidannotations.logger.formatter.FormatterTest
## 2741 org.androidannotations.logger.formatter.FormatterTest
## 2742 org.androidannotations.logger.formatter.FormatterTest
## 2743 org.androidannotations.logger.formatter.FormatterTest
## 2744 org.androidannotations.logger.LoggerTest
## 2745 org.androidannotations.logger.LoggerTest
## 2746 org.androidannotations.logger.LoggerTest
## 2747 org.androidannotations.logger.LoggerTest
## 2748 org.androidannotations.logger.LoggerTest
## 2749 org.androidannotations.logger.LoggerTest
## 2750 org.androidannotations.logger.LoggerTest
## 2751 org.androidannotations.logger.LoggerTest
## 2752 org.androidannotations.logger.LoggerTest
## 2753 org.androidannotations.logger.LoggerTest
## 2754 org.androidannotations.logger.LoggerTest
## 2755 org.androidannotations.logger.LoggerTest
## 2756 org.androidannotations.logger.LoggerTest
## 2757 org.androidannotations.logger.LoggerTest
## 2758 org.androidannotations.test.AbstractActivityTest
## 2759 org.androidannotations.test.AbstractActivityTest
## 2760 org.androidannotations.test.AbstractActivityTest
## 2761 org.androidannotations.test.AbstractActivityTest
## 2762 org.androidannotations.test.AbstractActivityTest
## 2763 org.androidannotations.test.AbstractActivityTest
## 2764 org.androidannotations.test.AbstractActivityTest
## 2765 org.androidannotations.test.AbstractActivityTest
## 2766 org.androidannotations.test.AbstractActivityTest
## 2767 org.androidannotations.test.AbstractActivityTest
## 2768 org.androidannotations.test.AbstractActivityTest
## 2769 org.androidannotations.test.AbstractActivityTest
## 2770 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2771 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2772 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2773 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2774 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2775 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2776 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2777 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2778 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2779 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2780 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2781 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2782 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2783 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2784 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2785 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2786 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2787 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2788 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2789 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2790 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2791 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2792 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2793 org.androidannotations.test.CheckedChangeHandledActivityTest
## 2794 org.androidannotations.test.ClicksHandledActivityTest
## 2795 org.androidannotations.test.ClicksHandledActivityTest
## 2796 org.androidannotations.test.ClicksHandledActivityTest
## 2797 org.androidannotations.test.ClicksHandledActivityTest
## 2798 org.androidannotations.test.ClicksHandledActivityTest
## 2799 org.androidannotations.test.ClicksHandledActivityTest
## 2800 org.androidannotations.test.ClicksHandledActivityTest
## 2801 org.androidannotations.test.ClicksHandledActivityTest
## 2802 org.androidannotations.test.ClicksHandledActivityTest
## 2803 org.androidannotations.test.ClicksHandledActivityTest
## 2804 org.androidannotations.test.ClicksHandledActivityTest
## 2805 org.androidannotations.test.ClicksHandledActivityTest
## 2806 org.androidannotations.test.ClicksHandledActivityTest
## 2807 org.androidannotations.test.ClicksHandledActivityTest
## 2808 org.androidannotations.test.ClicksHandledActivityTest
## 2809 org.androidannotations.test.ClicksHandledActivityTest
## 2810 org.androidannotations.test.ClicksHandledActivityTest
## 2811 org.androidannotations.test.ClicksHandledActivityTest
## 2812 org.androidannotations.test.ClicksHandledActivityTest
## 2813 org.androidannotations.test.ClicksHandledActivityTest
## 2814 org.androidannotations.test.ClicksHandledActivityTest
## 2815 org.androidannotations.test.ClicksHandledActivityTest
## 2816 org.androidannotations.test.ClicksHandledActivityTest
## 2817 org.androidannotations.test.ClicksHandledActivityTest
## 2818 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2819 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2820 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2821 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2822 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2823 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2824 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2825 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2826 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2827 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2828 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2829 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2830 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2831 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2832 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2833 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2834 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2835 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2836 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2837 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2838 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2839 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2840 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2841 org.androidannotations.test.EmptyActivityWithLayoutTest
## 2842 org.androidannotations.test.FocusChangeHandledActivityTest
## 2843 org.androidannotations.test.FocusChangeHandledActivityTest
## 2844 org.androidannotations.test.FocusChangeHandledActivityTest
## 2845 org.androidannotations.test.FocusChangeHandledActivityTest
## 2846 org.androidannotations.test.FocusChangeHandledActivityTest
## 2847 org.androidannotations.test.FocusChangeHandledActivityTest
## 2848 org.androidannotations.test.FocusChangeHandledActivityTest
## 2849 org.androidannotations.test.FocusChangeHandledActivityTest
## 2850 org.androidannotations.test.FocusChangeHandledActivityTest
## 2851 org.androidannotations.test.FocusChangeHandledActivityTest
## 2852 org.androidannotations.test.FocusChangeHandledActivityTest
## 2853 org.androidannotations.test.FocusChangeHandledActivityTest
## 2854 org.androidannotations.test.FocusChangeHandledActivityTest
## 2855 org.androidannotations.test.FocusChangeHandledActivityTest
## 2856 org.androidannotations.test.FocusChangeHandledActivityTest
## 2857 org.androidannotations.test.FocusChangeHandledActivityTest
## 2858 org.androidannotations.test.FocusChangeHandledActivityTest
## 2859 org.androidannotations.test.FocusChangeHandledActivityTest
## 2860 org.androidannotations.test.FocusChangeHandledActivityTest
## 2861 org.androidannotations.test.FocusChangeHandledActivityTest
## 2862 org.androidannotations.test.FocusChangeHandledActivityTest
## 2863 org.androidannotations.test.FocusChangeHandledActivityTest
## 2864 org.androidannotations.test.FocusChangeHandledActivityTest
## 2865 org.androidannotations.test.FocusChangeHandledActivityTest
## 2866 org.androidannotations.test.FromHtmlActivityTest
## 2867 org.androidannotations.test.FromHtmlActivityTest
## 2868 org.androidannotations.test.FromHtmlActivityTest
## 2869 org.androidannotations.test.FromHtmlActivityTest
## 2870 org.androidannotations.test.FromHtmlActivityTest
## 2871 org.androidannotations.test.FromHtmlActivityTest
## 2872 org.androidannotations.test.FromHtmlActivityTest
## 2873 org.androidannotations.test.FromHtmlActivityTest
## 2874 org.androidannotations.test.FromHtmlActivityTest
## 2875 org.androidannotations.test.FromHtmlActivityTest
## 2876 org.androidannotations.test.FromHtmlActivityTest
## 2877 org.androidannotations.test.FromHtmlActivityTest
## 2878 org.androidannotations.test.FromHtmlActivityTest
## 2879 org.androidannotations.test.FromHtmlActivityTest
## 2880 org.androidannotations.test.FromHtmlActivityTest
## 2881 org.androidannotations.test.FromHtmlActivityTest
## 2882 org.androidannotations.test.FromHtmlActivityTest
## 2883 org.androidannotations.test.FromHtmlActivityTest
## 2884 org.androidannotations.test.FromHtmlActivityTest
## 2885 org.androidannotations.test.FromHtmlActivityTest
## 2886 org.androidannotations.test.FromHtmlActivityTest
## 2887 org.androidannotations.test.FromHtmlActivityTest
## 2888 org.androidannotations.test.FromHtmlActivityTest
## 2889 org.androidannotations.test.FromHtmlActivityTest
## 2890 org.androidannotations.test.ItemClicksHandledActivityTest
## 2891 org.androidannotations.test.ItemClicksHandledActivityTest
## 2892 org.androidannotations.test.ItemClicksHandledActivityTest
## 2893 org.androidannotations.test.ItemClicksHandledActivityTest
## 2894 org.androidannotations.test.ItemClicksHandledActivityTest
## 2895 org.androidannotations.test.ItemClicksHandledActivityTest
## 2896 org.androidannotations.test.ItemClicksHandledActivityTest
## 2897 org.androidannotations.test.ItemClicksHandledActivityTest
## 2898 org.androidannotations.test.ItemClicksHandledActivityTest
## 2899 org.androidannotations.test.ItemClicksHandledActivityTest
## 2900 org.androidannotations.test.ItemClicksHandledActivityTest
## 2901 org.androidannotations.test.ItemClicksHandledActivityTest
## 2902 org.androidannotations.test.LongClicksHandledActivityTest
## 2903 org.androidannotations.test.LongClicksHandledActivityTest
## 2904 org.androidannotations.test.LongClicksHandledActivityTest
## 2905 org.androidannotations.test.LongClicksHandledActivityTest
## 2906 org.androidannotations.test.LongClicksHandledActivityTest
## 2907 org.androidannotations.test.LongClicksHandledActivityTest
## 2908 org.androidannotations.test.LongClicksHandledActivityTest
## 2909 org.androidannotations.test.LongClicksHandledActivityTest
## 2910 org.androidannotations.test.LongClicksHandledActivityTest
## 2911 org.androidannotations.test.LongClicksHandledActivityTest
## 2912 org.androidannotations.test.LongClicksHandledActivityTest
## 2913 org.androidannotations.test.LongClicksHandledActivityTest
## 2914 org.androidannotations.test.LongClicksHandledActivityTest
## 2915 org.androidannotations.test.LongClicksHandledActivityTest
## 2916 org.androidannotations.test.LongClicksHandledActivityTest
## 2917 org.androidannotations.test.LongClicksHandledActivityTest
## 2918 org.androidannotations.test.LongClicksHandledActivityTest
## 2919 org.androidannotations.test.LongClicksHandledActivityTest
## 2920 org.androidannotations.test.LongClicksHandledActivityTest
## 2921 org.androidannotations.test.LongClicksHandledActivityTest
## 2922 org.androidannotations.test.LongClicksHandledActivityTest
## 2923 org.androidannotations.test.LongClicksHandledActivityTest
## 2924 org.androidannotations.test.LongClicksHandledActivityTest
## 2925 org.androidannotations.test.LongClicksHandledActivityTest
## 2926 org.androidannotations.test.PageChangeListenerActivityTest
## 2927 org.androidannotations.test.PageChangeListenerActivityTest
## 2928 org.androidannotations.test.PageChangeListenerActivityTest
## 2929 org.androidannotations.test.PageChangeListenerActivityTest
## 2930 org.androidannotations.test.PageChangeListenerActivityTest
## 2931 org.androidannotations.test.PageChangeListenerActivityTest
## 2932 org.androidannotations.test.PageChangeListenerActivityTest
## 2933 org.androidannotations.test.PageChangeListenerActivityTest
## 2934 org.androidannotations.test.PageChangeListenerActivityTest
## 2935 org.androidannotations.test.PageChangeListenerActivityTest
## 2936 org.androidannotations.test.PageChangeListenerActivityTest
## 2937 org.androidannotations.test.PageChangeListenerActivityTest
## 2938 org.androidannotations.test.PageChangeListenerActivityTest
## 2939 org.androidannotations.test.PageChangeListenerActivityTest
## 2940 org.androidannotations.test.PageChangeListenerActivityTest
## 2941 org.androidannotations.test.PageChangeListenerActivityTest
## 2942 org.androidannotations.test.PageChangeListenerActivityTest
## 2943 org.androidannotations.test.PageChangeListenerActivityTest
## 2944 org.androidannotations.test.PageChangeListenerActivityTest
## 2945 org.androidannotations.test.PageChangeListenerActivityTest
## 2946 org.androidannotations.test.PageChangeListenerActivityTest
## 2947 org.androidannotations.test.PageChangeListenerActivityTest
## 2948 org.androidannotations.test.PageChangeListenerActivityTest
## 2949 org.androidannotations.test.PageChangeListenerActivityTest
## 2950 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2951 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2952 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2953 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2954 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2955 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2956 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2957 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2958 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2959 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2960 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2961 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 2962 org.androidannotations.test.SSLConnectionTest
## 2963 org.androidannotations.test.SSLConnectionTest
## 2964 org.androidannotations.test.SSLConnectionTest
## 2965 org.androidannotations.test.SSLConnectionTest
## 2966 org.androidannotations.test.SSLConnectionTest
## 2967 org.androidannotations.test.SSLConnectionTest
## 2968 org.androidannotations.test.SSLConnectionTest
## 2969 org.androidannotations.test.SSLConnectionTest
## 2970 org.androidannotations.test.SSLConnectionTest
## 2971 org.androidannotations.test.SSLConnectionTest
## 2972 org.androidannotations.test.SSLConnectionTest
## 2973 org.androidannotations.test.SSLConnectionTest
## 2974 org.androidannotations.test.TextWatchedActivityTest
## 2975 org.androidannotations.test.TextWatchedActivityTest
## 2976 org.androidannotations.test.TextWatchedActivityTest
## 2977 org.androidannotations.test.TextWatchedActivityTest
## 2978 org.androidannotations.test.TextWatchedActivityTest
## 2979 org.androidannotations.test.TextWatchedActivityTest
## 2980 org.androidannotations.test.TextWatchedActivityTest
## 2981 org.androidannotations.test.TextWatchedActivityTest
## 2982 org.androidannotations.test.TextWatchedActivityTest
## 2983 org.androidannotations.test.TextWatchedActivityTest
## 2984 org.androidannotations.test.TextWatchedActivityTest
## 2985 org.androidannotations.test.TextWatchedActivityTest
## 2986 org.androidannotations.test.TextWatchedActivityTest
## 2987 org.androidannotations.test.TextWatchedActivityTest
## 2988 org.androidannotations.test.TextWatchedActivityTest
## 2989 org.androidannotations.test.TextWatchedActivityTest
## 2990 org.androidannotations.test.TextWatchedActivityTest
## 2991 org.androidannotations.test.TextWatchedActivityTest
## 2992 org.androidannotations.test.TextWatchedActivityTest
## 2993 org.androidannotations.test.TextWatchedActivityTest
## 2994 org.androidannotations.test.TextWatchedActivityTest
## 2995 org.androidannotations.test.TextWatchedActivityTest
## 2996 org.androidannotations.test.TextWatchedActivityTest
## 2997 org.androidannotations.test.TextWatchedActivityTest
## 2998 org.androidannotations.test.ThreadActivityTest
## 2999 org.androidannotations.test.ThreadActivityTest
## 3000 org.androidannotations.test.ThreadActivityTest
## 3001 org.androidannotations.test.ThreadActivityTest
## 3002 org.androidannotations.test.ThreadActivityTest
## 3003 org.androidannotations.test.ThreadActivityTest
## 3004 org.androidannotations.test.ThreadActivityTest
## 3005 org.androidannotations.test.ThreadActivityTest
## 3006 org.androidannotations.test.ThreadActivityTest
## 3007 org.androidannotations.test.ThreadActivityTest
## 3008 org.androidannotations.test.ThreadActivityTest
## 3009 org.androidannotations.test.ThreadActivityTest
## 3010 org.androidannotations.test.TouchesHandledActivityTest
## 3011 org.androidannotations.test.TouchesHandledActivityTest
## 3012 org.androidannotations.test.TouchesHandledActivityTest
## 3013 org.androidannotations.test.TouchesHandledActivityTest
## 3014 org.androidannotations.test.TouchesHandledActivityTest
## 3015 org.androidannotations.test.TouchesHandledActivityTest
## 3016 org.androidannotations.test.TouchesHandledActivityTest
## 3017 org.androidannotations.test.TouchesHandledActivityTest
## 3018 org.androidannotations.test.TouchesHandledActivityTest
## 3019 org.androidannotations.test.TouchesHandledActivityTest
## 3020 org.androidannotations.test.TouchesHandledActivityTest
## 3021 org.androidannotations.test.TouchesHandledActivityTest
## 3022 org.androidannotations.test.TouchesHandledActivityTest
## 3023 org.androidannotations.test.TouchesHandledActivityTest
## 3024 org.androidannotations.test.TouchesHandledActivityTest
## 3025 org.androidannotations.test.TouchesHandledActivityTest
## 3026 org.androidannotations.test.TouchesHandledActivityTest
## 3027 org.androidannotations.test.TouchesHandledActivityTest
## 3028 org.androidannotations.test.TouchesHandledActivityTest
## 3029 org.androidannotations.test.TouchesHandledActivityTest
## 3030 org.androidannotations.test.TouchesHandledActivityTest
## 3031 org.androidannotations.test.TouchesHandledActivityTest
## 3032 org.androidannotations.test.TouchesHandledActivityTest
## 3033 org.androidannotations.test.TouchesHandledActivityTest
## 3034 org.androidannotations.test.TransactionalActivityTest
## 3035 org.androidannotations.test.TransactionalActivityTest
## 3036 org.androidannotations.test.TransactionalActivityTest
## 3037 org.androidannotations.test.TransactionalActivityTest
## 3038 org.androidannotations.test.TransactionalActivityTest
## 3039 org.androidannotations.test.TransactionalActivityTest
## 3040 org.androidannotations.test.TransactionalActivityTest
## 3041 org.androidannotations.test.TransactionalActivityTest
## 3042 org.androidannotations.test.TransactionalActivityTest
## 3043 org.androidannotations.test.TransactionalActivityTest
## 3044 org.androidannotations.test.TransactionalActivityTest
## 3045 org.androidannotations.test.TransactionalActivityTest
## 3046 org.androidannotations.test.ViewsInjectedActivityTest
## 3047 org.androidannotations.test.ViewsInjectedActivityTest
## 3048 org.androidannotations.test.ViewsInjectedActivityTest
## 3049 org.androidannotations.test.ViewsInjectedActivityTest
## 3050 org.androidannotations.test.ViewsInjectedActivityTest
## 3051 org.androidannotations.test.ViewsInjectedActivityTest
## 3052 org.androidannotations.test.ViewsInjectedActivityTest
## 3053 org.androidannotations.test.ViewsInjectedActivityTest
## 3054 org.androidannotations.test.ViewsInjectedActivityTest
## 3055 org.androidannotations.test.ViewsInjectedActivityTest
## 3056 org.androidannotations.test.ViewsInjectedActivityTest
## 3057 org.androidannotations.test.ViewsInjectedActivityTest
## 3058 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3059 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3060 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3061 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3062 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3063 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3064 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3065 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3066 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3067 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3068 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3069 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3070 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3071 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3072 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3073 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3074 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3075 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3076 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3077 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3078 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3079 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3080 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3081 org.androidannotations.test.afterextras.AfterExtrasActivityTest
## 3082 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3083 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3084 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3085 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3086 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3087 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3088 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3089 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3090 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3091 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3092 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3093 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3094 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3095 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3096 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3097 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3098 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3099 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3100 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3101 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3102 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3103 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3104 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3105 org.androidannotations.test.afterinject.AfterInjectActivityTest
## 3106 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3107 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3108 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3109 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3110 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3111 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3112 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3113 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3114 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3115 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3116 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3117 org.androidannotations.test.afterinject.AfterInjectBeanTest
## 3118 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3119 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3120 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3121 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3122 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3123 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3124 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3125 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3126 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3127 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3128 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3129 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3130 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3131 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3132 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3133 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3134 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3135 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3136 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3137 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3138 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3139 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3140 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3141 org.androidannotations.test.afterviews.AfterViewsActivityTest
## 3142 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3143 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3144 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3145 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3146 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3147 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3148 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3149 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3150 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3151 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3152 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3153 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3154 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3155 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3156 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3157 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3158 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3159 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3160 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3161 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3162 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3163 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3164 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3165 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3166 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3167 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3168 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3169 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3170 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3171 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3172 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3173 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3174 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3175 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3176 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3177 org.androidannotations.test.ebean.BeanInjectedActivityTest
## 3178 org.androidannotations.test.ebean.SomeBeanTest
## 3179 org.androidannotations.test.ebean.SomeBeanTest
## 3180 org.androidannotations.test.ebean.SomeBeanTest
## 3181 org.androidannotations.test.ebean.SomeBeanTest
## 3182 org.androidannotations.test.ebean.SomeBeanTest
## 3183 org.androidannotations.test.ebean.SomeBeanTest
## 3184 org.androidannotations.test.ebean.SomeBeanTest
## 3185 org.androidannotations.test.ebean.SomeBeanTest
## 3186 org.androidannotations.test.ebean.SomeBeanTest
## 3187 org.androidannotations.test.ebean.SomeBeanTest
## 3188 org.androidannotations.test.ebean.SomeBeanTest
## 3189 org.androidannotations.test.ebean.SomeBeanTest
## 3190 org.androidannotations.test.ebean.SomeSingletonTest
## 3191 org.androidannotations.test.ebean.SomeSingletonTest
## 3192 org.androidannotations.test.ebean.SomeSingletonTest
## 3193 org.androidannotations.test.ebean.SomeSingletonTest
## 3194 org.androidannotations.test.ebean.SomeSingletonTest
## 3195 org.androidannotations.test.ebean.SomeSingletonTest
## 3196 org.androidannotations.test.ebean.SomeSingletonTest
## 3197 org.androidannotations.test.ebean.SomeSingletonTest
## 3198 org.androidannotations.test.ebean.SomeSingletonTest
## 3199 org.androidannotations.test.ebean.SomeSingletonTest
## 3200 org.androidannotations.test.ebean.SomeSingletonTest
## 3201 org.androidannotations.test.ebean.SomeSingletonTest
## 3202 org.androidannotations.test.ebean.SomeSingletonTest
## 3203 org.androidannotations.test.ebean.SomeSingletonTest
## 3204 org.androidannotations.test.ebean.SomeSingletonTest
## 3205 org.androidannotations.test.ebean.SomeSingletonTest
## 3206 org.androidannotations.test.ebean.SomeSingletonTest
## 3207 org.androidannotations.test.ebean.SomeSingletonTest
## 3208 org.androidannotations.test.ebean.SomeSingletonTest
## 3209 org.androidannotations.test.ebean.SomeSingletonTest
## 3210 org.androidannotations.test.ebean.SomeSingletonTest
## 3211 org.androidannotations.test.ebean.SomeSingletonTest
## 3212 org.androidannotations.test.ebean.SomeSingletonTest
## 3213 org.androidannotations.test.ebean.SomeSingletonTest
## 3214 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3215 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3216 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3217 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3218 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3219 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3220 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3221 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3222 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3223 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3224 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3225 org.androidannotations.test.efragment.ForceLayoutInjectedListFragmentTest
## 3226 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3227 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3228 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3229 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3230 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3231 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3232 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3233 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3234 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3235 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3236 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3237 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3238 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3239 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3240 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3241 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3242 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3243 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3244 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3245 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3246 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3247 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3248 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3249 org.androidannotations.test.efragment.MyFragmentActivityTest
## 3250 org.androidannotations.test.efragment.MyListFragmentTest
## 3251 org.androidannotations.test.efragment.MyListFragmentTest
## 3252 org.androidannotations.test.efragment.MyListFragmentTest
## 3253 org.androidannotations.test.efragment.MyListFragmentTest
## 3254 org.androidannotations.test.efragment.MyListFragmentTest
## 3255 org.androidannotations.test.efragment.MyListFragmentTest
## 3256 org.androidannotations.test.efragment.MyListFragmentTest
## 3257 org.androidannotations.test.efragment.MyListFragmentTest
## 3258 org.androidannotations.test.efragment.MyListFragmentTest
## 3259 org.androidannotations.test.efragment.MyListFragmentTest
## 3260 org.androidannotations.test.efragment.MyListFragmentTest
## 3261 org.androidannotations.test.efragment.MyListFragmentTest
## 3262 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3263 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3264 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3265 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3266 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3267 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3268 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3269 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3270 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3271 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3272 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3273 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3274 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3275 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3276 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3277 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3278 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3279 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3280 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3281 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3282 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3283 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3284 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3285 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3286 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3287 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3288 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3289 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3290 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3291 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3292 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3293 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3294 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3295 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3296 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3297 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3298 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3299 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3300 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3301 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3302 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3303 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3304 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3305 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3306 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3307 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3308 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3309 org.androidannotations.test.efragment.MySupportFragmentActivityTest
## 3310 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3311 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3312 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3313 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3314 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3315 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3316 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3317 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3318 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3319 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3320 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3321 org.androidannotations.test.ereceiver.ReceiverWithActionsTest
## 3322 org.androidannotations.test.eview.CustomButtonTest
## 3323 org.androidannotations.test.eview.CustomButtonTest
## 3324 org.androidannotations.test.eview.CustomButtonTest
## 3325 org.androidannotations.test.eview.CustomButtonTest
## 3326 org.androidannotations.test.eview.CustomButtonTest
## 3327 org.androidannotations.test.eview.CustomButtonTest
## 3328 org.androidannotations.test.eview.CustomButtonTest
## 3329 org.androidannotations.test.eview.CustomButtonTest
## 3330 org.androidannotations.test.eview.CustomButtonTest
## 3331 org.androidannotations.test.eview.CustomButtonTest
## 3332 org.androidannotations.test.eview.CustomButtonTest
## 3333 org.androidannotations.test.eview.CustomButtonTest
## 3334 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3335 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3336 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3337 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3338 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3339 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3340 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3341 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3342 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3343 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3344 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3345 org.androidannotations.test.instancestate.InstanceStateAfterInjectActivityTest
## 3346 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3347 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3348 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3349 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3350 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3351 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3352 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3353 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3354 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3355 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3356 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3357 org.androidannotations.test.instancestate.SaveInstanceStateActivityTest
## 3358 org.androidannotations.test.menu.InjectMenuActivityTest
## 3359 org.androidannotations.test.menu.InjectMenuActivityTest
## 3360 org.androidannotations.test.menu.InjectMenuActivityTest
## 3361 org.androidannotations.test.menu.InjectMenuActivityTest
## 3362 org.androidannotations.test.menu.InjectMenuActivityTest
## 3363 org.androidannotations.test.menu.InjectMenuActivityTest
## 3364 org.androidannotations.test.menu.InjectMenuActivityTest
## 3365 org.androidannotations.test.menu.InjectMenuActivityTest
## 3366 org.androidannotations.test.menu.InjectMenuActivityTest
## 3367 org.androidannotations.test.menu.InjectMenuActivityTest
## 3368 org.androidannotations.test.menu.InjectMenuActivityTest
## 3369 org.androidannotations.test.menu.InjectMenuActivityTest
## 3370 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3371 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3372 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3373 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3374 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3375 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3376 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3377 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3378 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3379 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3380 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3381 org.androidannotations.test.menu.OptionsMenuActivityTest
## 3382 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3383 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3384 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3385 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3386 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3387 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3388 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3389 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3390 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3391 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3392 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3393 org.androidannotations.test.nonconfiguration.NonConfigurationActivityTest
## 3394 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3395 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3396 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3397 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3398 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3399 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3400 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3401 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3402 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3403 org.androidannotations.test.preference.PreferenceAnnotationsFragmentTest
## 3404 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3405 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3406 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3407 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3408 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3409 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3410 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3411 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3412 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3413 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3414 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3415 org.androidannotations.test.preference.PreferenceEventsHandledActivityTest
## 3416 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3417 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3418 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3419 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3420 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3421 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3422 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3423 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3424 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3425 org.androidannotations.test.preference.PreferenceHeadersActivityTest
## 3426 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3427 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3428 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3429 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3430 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3431 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3432 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3433 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3434 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3435 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3436 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3437 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3438 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3439 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3440 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3441 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3442 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3443 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3444 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3445 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3446 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3447 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3448 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3449 org.androidannotations.test.preference.PreferenceScreenActivityTest
## 3450 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3451 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3452 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3453 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3454 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3455 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3456 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3457 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3458 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3459 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3460 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3461 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3462 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3463 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3464 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3465 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3466 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3467 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3468 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3469 org.androidannotations.test.preference.PreferenceScreenFragmentTest
## 3470 org.androidannotations.test.prefs.PrefsActivityTest
## 3471 org.androidannotations.test.prefs.PrefsActivityTest
## 3472 org.androidannotations.test.prefs.PrefsActivityTest
## 3473 org.androidannotations.test.prefs.PrefsActivityTest
## 3474 org.androidannotations.test.prefs.PrefsActivityTest
## 3475 org.androidannotations.test.prefs.PrefsActivityTest
## 3476 org.androidannotations.test.prefs.PrefsActivityTest
## 3477 org.androidannotations.test.prefs.PrefsActivityTest
## 3478 org.androidannotations.test.prefs.PrefsActivityTest
## 3479 org.androidannotations.test.prefs.PrefsActivityTest
## 3480 org.androidannotations.test.prefs.PrefsActivityTest
## 3481 org.androidannotations.test.prefs.PrefsActivityTest
## 3482 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3483 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3484 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3485 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3486 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3487 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3488 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3489 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3490 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3491 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3492 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3493 org.androidannotations.test.receiver.ActivityWithReceiverTest
## 3494 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3495 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3496 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3497 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3498 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3499 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3500 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3501 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3502 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3503 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3504 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3505 org.androidannotations.test.receiver.FragmentWithReceiverTest
## 3506 org.androidannotations.test.res.ResActivityTest
## 3507 org.androidannotations.test.res.ResActivityTest
## 3508 org.androidannotations.test.res.ResActivityTest
## 3509 org.androidannotations.test.res.ResActivityTest
## 3510 org.androidannotations.test.res.ResActivityTest
## 3511 org.androidannotations.test.res.ResActivityTest
## 3512 org.androidannotations.test.res.ResActivityTest
## 3513 org.androidannotations.test.res.ResActivityTest
## 3514 org.androidannotations.test.res.ResActivityTest
## 3515 org.androidannotations.test.res.ResActivityTest
## 3516 org.androidannotations.test.res.ResActivityTest
## 3517 org.androidannotations.test.res.ResActivityTest
## 3518 org.androidannotations.test.trace.TracedActivityTest
## 3519 org.androidannotations.test.trace.TracedActivityTest
## 3520 org.androidannotations.test.trace.TracedActivityTest
## 3521 org.androidannotations.test.trace.TracedActivityTest
## 3522 org.androidannotations.test.trace.TracedActivityTest
## 3523 org.androidannotations.test.trace.TracedActivityTest
## 3524 org.androidannotations.test.trace.TracedActivityTest
## 3525 org.androidannotations.test.trace.TracedActivityTest
## 3526 org.androidannotations.test.trace.TracedActivityTest
## 3527 org.androidannotations.test.trace.TracedActivityTest
## 3528 org.androidannotations.test.trace.TracedActivityTest
## 3529 org.androidannotations.test.trace.TracedActivityTest
## 3530 org.androidannotations.test.trace.TracedActivityTest
## 3531 org.androidannotations.test.trace.TracedActivityTest
## 3532 org.androidannotations.test.trace.TracedActivityTest
## 3533 org.androidannotations.test.trace.TracedActivityTest
## 3534 org.androidannotations.test.trace.TracedActivityTest
## 3535 org.androidannotations.test.trace.TracedActivityTest
## 3536 org.androidannotations.test.trace.TracedActivityTest
## 3537 org.androidannotations.test.trace.TracedActivityTest
## 3538 org.androidannotations.test.trace.TracedActivityTest
## 3539 org.androidannotations.test.trace.TracedActivityTest
## 3540 org.androidannotations.test.trace.TracedActivityTest
## 3541 org.androidannotations.test.trace.TracedActivityTest
## 3542 org.androidannotations.rest.spring.test.MyServiceTest
## 3543 org.androidannotations.rest.spring.test.MyServiceTest
## 3544 org.androidannotations.rest.spring.test.MyServiceTest
## 3545 org.androidannotations.rest.spring.test.MyServiceTest
## 3546 org.androidannotations.rest.spring.test.MyServiceTest
## 3547 org.androidannotations.rest.spring.test.MyServiceTest
## 3548 org.androidannotations.rest.spring.test.MyServiceTest
## 3549 org.androidannotations.rest.spring.test.MyServiceTest
## 3550 org.androidannotations.rest.spring.test.MyServiceTest
## 3551 org.androidannotations.rest.spring.test.MyServiceTest
## 3552 org.androidannotations.rest.spring.test.MyServiceTest
## 3553 org.androidannotations.rest.spring.test.MyServiceTest
## 3554 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3555 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3556 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3557 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3558 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3559 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3560 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3561 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3562 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3563 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3564 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3565 org.androidannotations.rest.spring.test.PostRestServiceTest
## 3566 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3567 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3568 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3569 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3570 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3571 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3572 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3573 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3574 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3575 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3576 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3577 org.androidannotations.roboguice.test.ApplicationInjectedActivityTest
## 3578 org.androidannotations.helper.ValidatorParameterHelperTest
## 3579 org.androidannotations.helper.ValidatorParameterHelperTest
## 3580 org.androidannotations.helper.ValidatorParameterHelperTest
## 3581 org.androidannotations.helper.ValidatorParameterHelperTest
## 3582 org.androidannotations.helper.ValidatorParameterHelperTest
## 3583 org.androidannotations.helper.ValidatorParameterHelperTest
## 3584 org.androidannotations.helper.ValidatorParameterHelperTest
## 3585 org.androidannotations.helper.ValidatorParameterHelperTest
## 3586 org.androidannotations.helper.ValidatorParameterHelperTest
## 3587 org.androidannotations.helper.ValidatorParameterHelperTest
## 3588 org.androidannotations.helper.ValidatorParameterHelperTest
## 3589 org.androidannotations.helper.ValidatorParameterHelperTest
## 3590 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3591 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3592 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3593 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3594 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3595 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3596 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3597 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3598 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3599 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3600 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3601 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3602 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3603 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3604 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3605 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3606 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3607 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3608 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3609 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3610 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3611 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3612 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3613 org.androidannotations.internal.helper.AndroidManifestFinderTest
## 3614 org.androidannotations.logger.formatter.FormatterTest
## 3615 org.androidannotations.logger.formatter.FormatterTest
## 3616 org.androidannotations.logger.formatter.FormatterTest
## 3617 org.androidannotations.logger.formatter.FormatterTest
## 3618 org.androidannotations.logger.formatter.FormatterTest
## 3619 org.androidannotations.logger.formatter.FormatterTest
## 3620 org.androidannotations.logger.formatter.FormatterTest
## 3621 org.androidannotations.logger.formatter.FormatterTest
## 3622 org.androidannotations.logger.formatter.FormatterTest
## 3623 org.androidannotations.logger.formatter.FormatterTest
## 3624 org.androidannotations.logger.formatter.FormatterTest
## 3625 org.androidannotations.logger.formatter.FormatterTest
## 3626 org.androidannotations.logger.formatter.FormatterTest
## 3627 org.androidannotations.logger.formatter.FormatterTest
## 3628 org.androidannotations.logger.LoggerTest
## 3629 org.androidannotations.logger.LoggerTest
## 3630 org.androidannotations.logger.LoggerTest
## 3631 org.androidannotations.logger.LoggerTest
## 3632 org.androidannotations.logger.LoggerTest
## 3633 org.androidannotations.logger.LoggerTest
## 3634 org.androidannotations.logger.LoggerTest
## 3635 org.androidannotations.logger.LoggerTest
## 3636 org.androidannotations.logger.LoggerTest
## 3637 org.androidannotations.logger.LoggerTest
## 3638 org.androidannotations.logger.LoggerTest
## 3639 org.androidannotations.logger.LoggerTest
## 3640 org.androidannotations.logger.LoggerTest
## 3641 org.androidannotations.logger.LoggerTest
## 3642 org.androidannotations.test.AbstractActivityTest
## 3643 org.androidannotations.test.AbstractActivityTest
## 3644 org.androidannotations.test.AbstractActivityTest
## 3645 org.androidannotations.test.AbstractActivityTest
## 3646 org.androidannotations.test.AbstractActivityTest
## 3647 org.androidannotations.test.AbstractActivityTest
## 3648 org.androidannotations.test.AbstractActivityTest
## 3649 org.androidannotations.test.AbstractActivityTest
## 3650 org.androidannotations.test.AbstractActivityTest
## 3651 org.androidannotations.test.AbstractActivityTest
## 3652 org.androidannotations.test.AbstractActivityTest
## 3653 org.androidannotations.test.AbstractActivityTest
## 3654 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3655 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3656 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3657 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3658 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3659 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3660 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3661 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3662 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3663 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3664 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3665 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3666 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3667 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3668 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3669 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3670 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3671 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3672 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3673 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3674 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3675 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3676 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3677 org.androidannotations.test.CheckedChangeHandledActivityTest
## 3678 org.androidannotations.test.ClicksHandledActivityTest
## 3679 org.androidannotations.test.ClicksHandledActivityTest
## 3680 org.androidannotations.test.ClicksHandledActivityTest
## 3681 org.androidannotations.test.ClicksHandledActivityTest
## 3682 org.androidannotations.test.ClicksHandledActivityTest
## 3683 org.androidannotations.test.ClicksHandledActivityTest
## 3684 org.androidannotations.test.ClicksHandledActivityTest
## 3685 org.androidannotations.test.ClicksHandledActivityTest
## 3686 org.androidannotations.test.ClicksHandledActivityTest
## 3687 org.androidannotations.test.ClicksHandledActivityTest
## 3688 org.androidannotations.test.ClicksHandledActivityTest
## 3689 org.androidannotations.test.ClicksHandledActivityTest
## 3690 org.androidannotations.test.ClicksHandledActivityTest
## 3691 org.androidannotations.test.ClicksHandledActivityTest
## 3692 org.androidannotations.test.ClicksHandledActivityTest
## 3693 org.androidannotations.test.ClicksHandledActivityTest
## 3694 org.androidannotations.test.ClicksHandledActivityTest
## 3695 org.androidannotations.test.ClicksHandledActivityTest
## 3696 org.androidannotations.test.ClicksHandledActivityTest
## 3697 org.androidannotations.test.ClicksHandledActivityTest
## 3698 org.androidannotations.test.ClicksHandledActivityTest
## 3699 org.androidannotations.test.ClicksHandledActivityTest
## 3700 org.androidannotations.test.ClicksHandledActivityTest
## 3701 org.androidannotations.test.ClicksHandledActivityTest
## 3702 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3703 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3704 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3705 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3706 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3707 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3708 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3709 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3710 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3711 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3712 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3713 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3714 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3715 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3716 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3717 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3718 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3719 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3720 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3721 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3722 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3723 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3724 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3725 org.androidannotations.test.EmptyActivityWithLayoutTest
## 3726 org.androidannotations.test.FocusChangeHandledActivityTest
## 3727 org.androidannotations.test.FocusChangeHandledActivityTest
## 3728 org.androidannotations.test.FocusChangeHandledActivityTest
## 3729 org.androidannotations.test.FocusChangeHandledActivityTest
## 3730 org.androidannotations.test.FocusChangeHandledActivityTest
## 3731 org.androidannotations.test.FocusChangeHandledActivityTest
## 3732 org.androidannotations.test.FocusChangeHandledActivityTest
## 3733 org.androidannotations.test.FocusChangeHandledActivityTest
## 3734 org.androidannotations.test.FocusChangeHandledActivityTest
## 3735 org.androidannotations.test.FocusChangeHandledActivityTest
## 3736 org.androidannotations.test.FocusChangeHandledActivityTest
## 3737 org.androidannotations.test.FocusChangeHandledActivityTest
## 3738 org.androidannotations.test.FocusChangeHandledActivityTest
## 3739 org.androidannotations.test.FocusChangeHandledActivityTest
## 3740 org.androidannotations.test.FocusChangeHandledActivityTest
## 3741 org.androidannotations.test.FocusChangeHandledActivityTest
## 3742 org.androidannotations.test.FocusChangeHandledActivityTest
## 3743 org.androidannotations.test.FocusChangeHandledActivityTest
## 3744 org.androidannotations.test.FocusChangeHandledActivityTest
## 3745 org.androidannotations.test.FocusChangeHandledActivityTest
## 3746 org.androidannotations.test.FocusChangeHandledActivityTest
## 3747 org.androidannotations.test.FocusChangeHandledActivityTest
## 3748 org.androidannotations.test.FocusChangeHandledActivityTest
## 3749 org.androidannotations.test.FocusChangeHandledActivityTest
## 3750 org.androidannotations.test.FromHtmlActivityTest
## 3751 org.androidannotations.test.FromHtmlActivityTest
## 3752 org.androidannotations.test.FromHtmlActivityTest
## 3753 org.androidannotations.test.FromHtmlActivityTest
## 3754 org.androidannotations.test.FromHtmlActivityTest
## 3755 org.androidannotations.test.FromHtmlActivityTest
## 3756 org.androidannotations.test.FromHtmlActivityTest
## 3757 org.androidannotations.test.FromHtmlActivityTest
## 3758 org.androidannotations.test.FromHtmlActivityTest
## 3759 org.androidannotations.test.FromHtmlActivityTest
## 3760 org.androidannotations.test.FromHtmlActivityTest
## 3761 org.androidannotations.test.FromHtmlActivityTest
## 3762 org.androidannotations.test.FromHtmlActivityTest
## 3763 org.androidannotations.test.FromHtmlActivityTest
## 3764 org.androidannotations.test.FromHtmlActivityTest
## 3765 org.androidannotations.test.FromHtmlActivityTest
## 3766 org.androidannotations.test.FromHtmlActivityTest
## 3767 org.androidannotations.test.FromHtmlActivityTest
## 3768 org.androidannotations.test.FromHtmlActivityTest
## 3769 org.androidannotations.test.FromHtmlActivityTest
## 3770 org.androidannotations.test.FromHtmlActivityTest
## 3771 org.androidannotations.test.FromHtmlActivityTest
## 3772 org.androidannotations.test.FromHtmlActivityTest
## 3773 org.androidannotations.test.FromHtmlActivityTest
## 3774 org.androidannotations.test.ItemClicksHandledActivityTest
## 3775 org.androidannotations.test.ItemClicksHandledActivityTest
## 3776 org.androidannotations.test.ItemClicksHandledActivityTest
## 3777 org.androidannotations.test.ItemClicksHandledActivityTest
## 3778 org.androidannotations.test.ItemClicksHandledActivityTest
## 3779 org.androidannotations.test.ItemClicksHandledActivityTest
## 3780 org.androidannotations.test.ItemClicksHandledActivityTest
## 3781 org.androidannotations.test.ItemClicksHandledActivityTest
## 3782 org.androidannotations.test.ItemClicksHandledActivityTest
## 3783 org.androidannotations.test.ItemClicksHandledActivityTest
## 3784 org.androidannotations.test.ItemClicksHandledActivityTest
## 3785 org.androidannotations.test.ItemClicksHandledActivityTest
## 3786 org.androidannotations.test.LongClicksHandledActivityTest
## 3787 org.androidannotations.test.LongClicksHandledActivityTest
## 3788 org.androidannotations.test.LongClicksHandledActivityTest
## 3789 org.androidannotations.test.LongClicksHandledActivityTest
## 3790 org.androidannotations.test.LongClicksHandledActivityTest
## 3791 org.androidannotations.test.LongClicksHandledActivityTest
## 3792 org.androidannotations.test.LongClicksHandledActivityTest
## 3793 org.androidannotations.test.LongClicksHandledActivityTest
## 3794 org.androidannotations.test.LongClicksHandledActivityTest
## 3795 org.androidannotations.test.LongClicksHandledActivityTest
## 3796 org.androidannotations.test.LongClicksHandledActivityTest
## 3797 org.androidannotations.test.LongClicksHandledActivityTest
## 3798 org.androidannotations.test.LongClicksHandledActivityTest
## 3799 org.androidannotations.test.LongClicksHandledActivityTest
## 3800 org.androidannotations.test.LongClicksHandledActivityTest
## 3801 org.androidannotations.test.LongClicksHandledActivityTest
## 3802 org.androidannotations.test.LongClicksHandledActivityTest
## 3803 org.androidannotations.test.LongClicksHandledActivityTest
## 3804 org.androidannotations.test.LongClicksHandledActivityTest
## 3805 org.androidannotations.test.LongClicksHandledActivityTest
## 3806 org.androidannotations.test.LongClicksHandledActivityTest
## 3807 org.androidannotations.test.LongClicksHandledActivityTest
## 3808 org.androidannotations.test.LongClicksHandledActivityTest
## 3809 org.androidannotations.test.LongClicksHandledActivityTest
## 3810 org.androidannotations.test.PageChangeListenerActivityTest
## 3811 org.androidannotations.test.PageChangeListenerActivityTest
## 3812 org.androidannotations.test.PageChangeListenerActivityTest
## 3813 org.androidannotations.test.PageChangeListenerActivityTest
## 3814 org.androidannotations.test.PageChangeListenerActivityTest
## 3815 org.androidannotations.test.PageChangeListenerActivityTest
## 3816 org.androidannotations.test.PageChangeListenerActivityTest
## 3817 org.androidannotations.test.PageChangeListenerActivityTest
## 3818 org.androidannotations.test.PageChangeListenerActivityTest
## 3819 org.androidannotations.test.PageChangeListenerActivityTest
## 3820 org.androidannotations.test.PageChangeListenerActivityTest
## 3821 org.androidannotations.test.PageChangeListenerActivityTest
## 3822 org.androidannotations.test.PageChangeListenerActivityTest
## 3823 org.androidannotations.test.PageChangeListenerActivityTest
## 3824 org.androidannotations.test.PageChangeListenerActivityTest
## 3825 org.androidannotations.test.PageChangeListenerActivityTest
## 3826 org.androidannotations.test.PageChangeListenerActivityTest
## 3827 org.androidannotations.test.PageChangeListenerActivityTest
## 3828 org.androidannotations.test.PageChangeListenerActivityTest
## 3829 org.androidannotations.test.PageChangeListenerActivityTest
## 3830 org.androidannotations.test.PageChangeListenerActivityTest
## 3831 org.androidannotations.test.PageChangeListenerActivityTest
## 3832 org.androidannotations.test.PageChangeListenerActivityTest
## 3833 org.androidannotations.test.PageChangeListenerActivityTest
## 3834 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3835 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3836 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3837 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3838 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3839 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3840 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3841 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3842 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3843 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3844 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3845 org.androidannotations.test.SeekBarChangeListenedActivityTest
## 3846 org.androidannotations.test.SSLConnectionTest
## loc nom wmc rfc ar1 et1 it1 gf1 se1 mg1 ro1
## 1 10 2 4 8 2 0 0 0 0 0 0
## 2 15 3 5 11 2 0 0 0 0 0 0
## 3 10 2 4 8 2 0 0 0 0 0 0
## 4 15 3 5 11 2 0 0 0 0 0 0
## 5 7 1 1 3 1 0 0 0 0 0 0
## 6 7 1 1 3 1 0 0 0 0 0 0
## 7 7 1 1 3 1 0 0 0 0 0 0
## 8 7 1 1 3 1 0 0 0 0 0 0
## 9 46 8 17 36 2 0 0 0 0 0 0
## 10 47 8 17 37 2 0 0 0 0 0 0
## 11 46 8 17 36 2 0 0 0 0 0 0
## 12 47 8 17 37 2 0 0 0 0 0 0
## 13 8 1 1 5 2 0 0 0 0 0 0
## 14 8 1 1 5 2 0 0 0 0 0 0
## 15 8 1 1 5 2 0 0 0 0 0 0
## 16 8 1 1 5 2 0 0 0 0 0 0
## 17 8 1 1 4 2 0 0 0 0 0 0
## 18 8 1 1 4 2 0 0 0 0 0 0
## 19 16 3 4 12 2 0 0 0 0 0 0
## 20 16 3 4 12 2 0 0 0 0 0 0
## 21 16 3 4 12 2 0 0 0 0 0 0
## 22 16 3 4 12 2 0 0 0 0 0 0
## 23 44 5 10 37 2 0 0 2 0 0 0
## 24 47 8 18 37 2 0 0 0 0 0 0
## 25 47 8 18 37 2 0 0 0 0 0 0
## 26 48 8 10 37 2 0 0 0 0 0 0
## 27 48 8 10 37 2 0 0 0 0 0 0
## 28 33 1 2 12 18 9 0 0 0 0 0
## 29 33 1 2 12 18 9 0 0 0 0 0
## 30 33 1 2 12 18 9 0 0 0 0 0
## 31 33 1 2 12 18 9 0 0 0 0 0
## 32 33 1 2 12 18 9 0 0 0 0 0
## 33 33 1 2 12 18 9 0 0 0 0 0
## 34 29 3 8 18 0 2 2 0 0 0 0
## 35 29 3 8 18 0 2 2 0 0 0 0
## 36 24 6 7 12 2 0 0 0 0 0 0
## 37 24 6 7 12 2 0 0 0 0 0 0
## 38 32 4 5 24 5 0 0 0 0 0 0
## 39 32 4 5 24 5 0 0 0 0 0 0
## 40 77 16 17 97 2 0 0 19 0 0 0
## 41 77 16 17 97 2 0 0 19 0 0 0
## 42 77 16 17 97 2 0 0 19 0 0 0
## 43 77 16 17 97 2 0 0 19 0 0 0
## 44 38 9 14 18 2 0 0 0 0 0 0
## 45 38 9 14 18 2 0 0 0 0 0 0
## 46 38 9 14 18 2 0 0 0 0 0 0
## 47 38 9 14 18 2 0 0 0 0 0 0
## 48 14 1 1 4 0 0 0 0 0 0 0
## 49 14 1 1 4 0 0 0 0 0 0 0
## 50 10 2 4 8 2 0 0 0 0 0 0
## 51 15 3 5 11 2 0 0 0 0 0 0
## 52 10 2 4 8 2 0 0 0 0 0 0
## 53 15 3 5 11 2 0 0 0 0 0 0
## 54 7 1 1 3 1 0 0 0 0 0 0
## 55 7 1 1 3 1 0 0 0 0 0 0
## 56 7 1 1 3 1 0 0 0 0 0 0
## 57 7 1 1 3 1 0 0 0 0 0 0
## 58 46 8 17 36 2 0 0 0 0 0 0
## 59 47 8 17 37 2 0 0 0 0 0 0
## 60 46 8 17 36 2 0 0 0 0 0 0
## 61 47 8 17 37 2 0 0 0 0 0 0
## 62 8 1 1 5 2 0 0 0 0 0 0
## 63 8 1 1 5 2 0 0 0 0 0 0
## 64 8 1 1 5 2 0 0 0 0 0 0
## 65 8 1 1 5 2 0 0 0 0 0 0
## 66 8 1 1 4 2 0 0 0 0 0 0
## 67 8 1 1 4 2 0 0 0 0 0 0
## 68 16 3 4 12 2 0 0 0 0 0 0
## 69 16 3 4 12 2 0 0 0 0 0 0
## 70 16 3 4 12 2 0 0 0 0 0 0
## 71 16 3 4 12 2 0 0 0 0 0 0
## 72 44 5 10 37 2 0 0 2 0 0 0
## 73 47 8 18 37 2 0 0 0 0 0 0
## 74 47 8 18 37 2 0 0 0 0 0 0
## 75 48 8 10 37 2 0 0 0 0 0 0
## 76 48 8 10 37 2 0 0 0 0 0 0
## 77 33 1 2 12 18 9 0 0 0 0 0
## 78 33 1 2 12 18 9 0 0 0 0 0
## 79 33 1 2 12 18 9 0 0 0 0 0
## 80 33 1 2 12 18 9 0 0 0 0 0
## 81 33 1 2 12 18 9 0 0 0 0 0
## 82 33 1 2 12 18 9 0 0 0 0 0
## 83 29 3 8 18 0 2 2 0 0 0 0
## 84 29 3 8 18 0 2 2 0 0 0 0
## 85 24 6 7 12 2 0 0 0 0 0 0
## 86 24 6 7 12 2 0 0 0 0 0 0
## 87 32 4 5 24 5 0 0 0 0 0 0
## 88 32 4 5 24 5 0 0 0 0 0 0
## 89 77 16 17 97 2 0 0 19 0 0 0
## 90 77 16 17 97 2 0 0 19 0 0 0
## 91 77 16 17 97 2 0 0 19 0 0 0
## 92 77 16 17 97 2 0 0 19 0 0 0
## 93 38 9 14 18 2 0 0 0 0 0 0
## 94 38 9 14 18 2 0 0 0 0 0 0
## 95 38 9 14 18 2 0 0 0 0 0 0
## 96 38 9 14 18 2 0 0 0 0 0 0
## 97 14 1 1 4 0 0 0 0 0 0 0
## 98 14 1 1 4 0 0 0 0 0 0 0
## 99 10 2 4 8 2 0 0 0 0 0 0
## 100 15 3 5 11 2 0 0 0 0 0 0
## 101 10 2 4 8 2 0 0 0 0 0 0
## 102 15 3 5 11 2 0 0 0 0 0 0
## 103 7 1 1 3 1 0 0 0 0 0 0
## 104 7 1 1 3 1 0 0 0 0 0 0
## 105 7 1 1 3 1 0 0 0 0 0 0
## 106 7 1 1 3 1 0 0 0 0 0 0
## 107 46 8 17 36 2 0 0 0 0 0 0
## 108 47 8 17 37 2 0 0 0 0 0 0
## 109 46 8 17 36 2 0 0 0 0 0 0
## 110 47 8 17 37 2 0 0 0 0 0 0
## 111 8 1 1 5 2 0 0 0 0 0 0
## 112 8 1 1 5 2 0 0 0 0 0 0
## 113 8 1 1 5 2 0 0 0 0 0 0
## 114 8 1 1 5 2 0 0 0 0 0 0
## 115 8 1 1 4 2 0 0 0 0 0 0
## 116 8 1 1 4 2 0 0 0 0 0 0
## 117 16 3 4 12 2 0 0 0 0 0 0
## 118 16 3 4 12 2 0 0 0 0 0 0
## 119 16 3 4 12 2 0 0 0 0 0 0
## 120 16 3 4 12 2 0 0 0 0 0 0
## 121 44 5 10 37 2 0 0 2 0 0 0
## 122 47 8 18 37 2 0 0 0 0 0 0
## 123 47 8 18 37 2 0 0 0 0 0 0
## 124 48 8 10 37 2 0 0 0 0 0 0
## 125 48 8 10 37 2 0 0 0 0 0 0
## 126 33 1 2 12 18 9 0 0 0 0 0
## 127 33 1 2 12 18 9 0 0 0 0 0
## 128 33 1 2 12 18 9 0 0 0 0 0
## 129 33 1 2 12 18 9 0 0 0 0 0
## 130 33 1 2 12 18 9 0 0 0 0 0
## 131 33 1 2 12 18 9 0 0 0 0 0
## 132 29 3 8 18 0 2 2 0 0 0 0
## 133 29 3 8 18 0 2 2 0 0 0 0
## 134 24 6 7 12 2 0 0 0 0 0 0
## 135 24 6 7 12 2 0 0 0 0 0 0
## 136 32 4 5 24 5 0 0 0 0 0 0
## 137 32 4 5 24 5 0 0 0 0 0 0
## 138 77 16 17 97 2 0 0 19 0 0 0
## 139 77 16 17 97 2 0 0 19 0 0 0
## 140 77 16 17 97 2 0 0 19 0 0 0
## 141 77 16 17 97 2 0 0 19 0 0 0
## 142 38 9 14 18 2 0 0 0 0 0 0
## 143 38 9 14 18 2 0 0 0 0 0 0
## 144 38 9 14 18 2 0 0 0 0 0 0
## 145 38 9 14 18 2 0 0 0 0 0 0
## 146 14 1 1 4 0 0 0 0 0 0 0
## 147 14 1 1 4 0 0 0 0 0 0 0
## 148 10 2 4 8 2 0 0 0 0 0 0
## 149 15 3 5 11 2 0 0 0 0 0 0
## 150 10 2 4 8 2 0 0 0 0 0 0
## 151 15 3 5 11 2 0 0 0 0 0 0
## 152 7 1 1 3 1 0 0 0 0 0 0
## 153 7 1 1 3 1 0 0 0 0 0 0
## 154 7 1 1 3 1 0 0 0 0 0 0
## 155 7 1 1 3 1 0 0 0 0 0 0
## 156 46 8 17 36 2 0 0 0 0 0 0
## 157 47 8 17 37 2 0 0 0 0 0 0
## 158 46 8 17 36 2 0 0 0 0 0 0
## 159 47 8 17 37 2 0 0 0 0 0 0
## 160 8 1 1 5 2 0 0 0 0 0 0
## 161 8 1 1 5 2 0 0 0 0 0 0
## 162 8 1 1 5 2 0 0 0 0 0 0
## 163 8 1 1 5 2 0 0 0 0 0 0
## 164 8 1 1 4 2 0 0 0 0 0 0
## 165 8 1 1 4 2 0 0 0 0 0 0
## 166 16 3 4 12 2 0 0 0 0 0 0
## 167 16 3 4 12 2 0 0 0 0 0 0
## 168 16 3 4 12 2 0 0 0 0 0 0
## 169 16 3 4 12 2 0 0 0 0 0 0
## 170 33 1 2 12 18 9 0 0 0 0 0
## 171 33 1 2 12 18 9 0 0 0 0 0
## 172 33 1 2 12 18 9 0 0 0 0 0
## 173 33 1 2 12 18 9 0 0 0 0 0
## 174 33 1 2 12 18 9 0 0 0 0 0
## 175 33 1 2 12 18 9 0 0 0 0 0
## 176 29 3 8 18 0 2 2 0 0 0 0
## 177 29 3 8 18 0 2 2 0 0 0 0
## 178 24 6 7 12 2 0 0 0 0 0 0
## 179 24 6 7 12 2 0 0 0 0 0 0
## 180 32 4 5 24 5 0 0 0 0 0 0
## 181 32 4 5 24 5 0 0 0 0 0 0
## 182 77 16 17 97 2 0 0 19 0 0 0
## 183 77 16 17 97 2 0 0 19 0 0 0
## 184 77 16 17 97 2 0 0 19 0 0 0
## 185 77 16 17 97 2 0 0 19 0 0 0
## 186 38 9 14 18 2 0 0 0 0 0 0
## 187 38 9 14 18 2 0 0 0 0 0 0
## 188 38 9 14 18 2 0 0 0 0 0 0
## 189 38 9 14 18 2 0 0 0 0 0 0
## 190 14 1 1 4 0 0 0 0 0 0 0
## 191 14 1 1 4 0 0 0 0 0 0 0
## 192 7 1 1 3 1 0 0 0 0 0 0
## 193 7 1 1 3 1 0 0 0 0 0 0
## 194 7 1 1 3 1 0 0 0 0 0 0
## 195 7 1 1 3 1 0 0 0 0 0 0
## 196 46 8 17 36 2 0 0 0 0 0 0
## 197 47 8 17 37 2 0 0 0 0 0 0
## 198 8 1 1 5 2 0 0 0 0 0 0
## 199 8 1 1 5 2 0 0 0 0 0 0
## 200 8 1 1 5 2 0 0 0 0 0 0
## 201 8 1 1 5 2 0 0 0 0 0 0
## 202 8 1 1 4 2 0 0 0 0 0 0
## 203 8 1 1 4 2 0 0 0 0 0 0
## 204 8 1 1 4 2 0 0 0 0 0 0
## 205 8 1 1 4 2 0 0 0 0 0 0
## 206 24 6 7 12 2 0 0 0 0 0 0
## 207 24 6 7 12 2 0 0 0 0 0 0
## 208 24 6 7 12 2 0 0 0 0 0 0
## 209 24 6 7 12 2 0 0 0 0 0 0
## 210 46 8 17 36 2 0 0 0 0 0 0
## 211 47 8 17 37 2 0 0 0 0 0 0
## 212 8 1 1 5 2 0 0 0 0 0 0
## 213 8 1 1 5 2 0 0 0 0 0 0
## 214 8 1 1 5 2 0 0 0 0 0 0
## 215 8 1 1 5 2 0 0 0 0 0 0
## 216 8 1 1 4 2 0 0 0 0 0 0
## 217 8 1 1 4 2 0 0 0 0 0 0
## 218 8 1 1 4 2 0 0 0 0 0 0
## 219 8 1 1 4 2 0 0 0 0 0 0
## 220 24 6 7 12 2 0 0 0 0 0 0
## 221 24 6 7 12 2 0 0 0 0 0 0
## 222 24 6 7 12 2 0 0 0 0 0 0
## 223 24 6 7 12 2 0 0 0 0 0 0
## 224 77 16 17 97 2 0 0 19 0 0 0
## 225 77 16 17 97 2 0 0 19 0 0 0
## 226 77 16 17 97 2 0 0 19 0 0 0
## 227 77 16 17 97 2 0 0 19 0 0 0
## 228 38 9 14 18 2 0 0 0 0 0 0
## 229 38 9 14 18 2 0 0 0 0 0 0
## 230 38 9 14 18 2 0 0 0 0 0 0
## 231 38 9 14 18 2 0 0 0 0 0 0
## 232 10 2 4 8 2 0 0 0 0 0 0
## 233 15 3 5 11 2 0 0 0 0 0 0
## 234 10 2 4 8 2 0 0 0 0 0 0
## 235 15 3 5 11 2 0 0 0 0 0 0
## 236 7 1 1 3 1 0 0 0 0 0 0
## 237 7 1 1 3 1 0 0 0 0 0 0
## 238 7 1 1 3 1 0 0 0 0 0 0
## 239 7 1 1 3 1 0 0 0 0 0 0
## 240 46 8 17 36 2 0 0 0 0 0 0
## 241 47 8 17 37 2 0 0 0 0 0 0
## 242 46 8 17 36 2 0 0 0 0 0 0
## 243 47 8 17 37 2 0 0 0 0 0 0
## 244 8 1 1 5 2 0 0 0 0 0 0
## 245 8 1 1 5 2 0 0 0 0 0 0
## 246 8 1 1 5 2 0 0 0 0 0 0
## 247 8 1 1 5 2 0 0 0 0 0 0
## 248 8 1 1 4 2 0 0 0 0 0 0
## 249 8 1 1 4 2 0 0 0 0 0 0
## 250 16 3 4 12 2 0 0 0 0 0 0
## 251 16 3 4 12 2 0 0 0 0 0 0
## 252 16 3 4 12 2 0 0 0 0 0 0
## 253 16 3 4 12 2 0 0 0 0 0 0
## 254 44 5 10 37 2 0 0 2 0 0 0
## 255 47 8 18 37 2 0 0 0 0 0 0
## 256 47 8 18 37 2 0 0 0 0 0 0
## 257 48 8 10 37 2 0 0 0 0 0 0
## 258 48 8 10 37 2 0 0 0 0 0 0
## 259 33 1 2 12 18 9 0 0 0 0 0
## 260 33 1 2 12 18 9 0 0 0 0 0
## 261 33 1 2 12 18 9 0 0 0 0 0
## 262 33 1 2 12 18 9 0 0 0 0 0
## 263 33 1 2 12 18 9 0 0 0 0 0
## 264 33 1 2 12 18 9 0 0 0 0 0
## 265 29 3 8 18 0 2 2 0 0 0 0
## 266 29 3 8 18 0 2 2 0 0 0 0
## 267 24 6 7 12 2 0 0 0 0 0 0
## 268 24 6 7 12 2 0 0 0 0 0 0
## 269 32 4 5 24 5 0 0 0 0 0 0
## 270 32 4 5 24 5 0 0 0 0 0 0
## 271 77 16 17 97 2 0 0 19 0 0 0
## 272 77 16 17 97 2 0 0 19 0 0 0
## 273 77 16 17 97 2 0 0 19 0 0 0
## 274 77 16 17 97 2 0 0 19 0 0 0
## 275 38 9 14 18 2 0 0 0 0 0 0
## 276 38 9 14 18 2 0 0 0 0 0 0
## 277 38 9 14 18 2 0 0 0 0 0 0
## 278 38 9 14 18 2 0 0 0 0 0 0
## 279 14 1 1 4 0 0 0 0 0 0 0
## 280 14 1 1 4 0 0 0 0 0 0 0
## 281 10 2 4 8 2 0 0 0 0 0 0
## 282 15 3 5 11 2 0 0 0 0 0 0
## 283 10 2 4 8 2 0 0 0 0 0 0
## 284 15 3 5 11 2 0 0 0 0 0 0
## 285 7 1 1 3 1 0 0 0 0 0 0
## 286 7 1 1 3 1 0 0 0 0 0 0
## 287 7 1 1 3 1 0 0 0 0 0 0
## 288 7 1 1 3 1 0 0 0 0 0 0
## 289 46 8 17 36 2 0 0 0 0 0 0
## 290 47 8 17 37 2 0 0 0 0 0 0
## 291 46 8 17 36 2 0 0 0 0 0 0
## 292 47 8 17 37 2 0 0 0 0 0 0
## 293 8 1 1 5 2 0 0 0 0 0 0
## 294 8 1 1 5 2 0 0 0 0 0 0
## 295 8 1 1 5 2 0 0 0 0 0 0
## 296 8 1 1 5 2 0 0 0 0 0 0
## 297 8 1 1 4 2 0 0 0 0 0 0
## 298 8 1 1 4 2 0 0 0 0 0 0
## 299 16 3 4 12 2 0 0 0 0 0 0
## 300 16 3 4 12 2 0 0 0 0 0 0
## 301 16 3 4 12 2 0 0 0 0 0 0
## 302 16 3 4 12 2 0 0 0 0 0 0
## 303 33 1 2 12 18 9 0 0 0 0 0
## 304 33 1 2 12 18 9 0 0 0 0 0
## 305 33 1 2 12 18 9 0 0 0 0 0
## 306 33 1 2 12 18 9 0 0 0 0 0
## 307 33 1 2 12 18 9 0 0 0 0 0
## 308 33 1 2 12 18 9 0 0 0 0 0
## 309 29 3 8 18 0 2 2 0 0 0 0
## 310 29 3 8 18 0 2 2 0 0 0 0
## 311 24 6 7 12 2 0 0 0 0 0 0
## 312 24 6 7 12 2 0 0 0 0 0 0
## 313 32 4 5 24 5 0 0 0 0 0 0
## 314 32 4 5 24 5 0 0 0 0 0 0
## 315 77 16 17 97 2 0 0 19 0 0 0
## 316 77 16 17 97 2 0 0 19 0 0 0
## 317 77 16 17 97 2 0 0 19 0 0 0
## 318 77 16 17 97 2 0 0 19 0 0 0
## 319 38 9 14 18 2 0 0 0 0 0 0
## 320 38 9 14 18 2 0 0 0 0 0 0
## 321 38 9 14 18 2 0 0 0 0 0 0
## 322 38 9 14 18 2 0 0 0 0 0 0
## 323 14 1 1 4 0 0 0 0 0 0 0
## 324 14 1 1 4 0 0 0 0 0 0 0
## 325 10 2 4 8 2 0 0 0 0 0 0
## 326 15 3 5 11 2 0 0 0 0 0 0
## 327 10 2 4 8 2 0 0 0 0 0 0
## 328 15 3 5 11 2 0 0 0 0 0 0
## 329 7 1 1 3 1 0 0 0 0 0 0
## 330 7 1 1 3 1 0 0 0 0 0 0
## 331 7 1 1 3 1 0 0 0 0 0 0
## 332 7 1 1 3 1 0 0 0 0 0 0
## 333 46 8 17 36 2 0 0 0 0 0 0
## 334 47 8 17 37 2 0 0 0 0 0 0
## 335 46 8 17 36 2 0 0 0 0 0 0
## 336 47 8 17 37 2 0 0 0 0 0 0
## 337 8 1 1 5 2 0 0 0 0 0 0
## 338 8 1 1 5 2 0 0 0 0 0 0
## 339 8 1 1 5 2 0 0 0 0 0 0
## 340 8 1 1 5 2 0 0 0 0 0 0
## 341 8 1 1 4 2 0 0 0 0 0 0
## 342 8 1 1 4 2 0 0 0 0 0 0
## 343 16 3 4 12 2 0 0 0 0 0 0
## 344 16 3 4 12 2 0 0 0 0 0 0
## 345 16 3 4 12 2 0 0 0 0 0 0
## 346 16 3 4 12 2 0 0 0 0 0 0
## 347 44 5 10 37 2 0 0 2 0 0 0
## 348 47 8 18 37 2 0 0 0 0 0 0
## 349 47 8 18 37 2 0 0 0 0 0 0
## 350 48 8 10 37 2 0 0 0 0 0 0
## 351 48 8 10 37 2 0 0 0 0 0 0
## 352 33 1 2 12 18 9 0 0 0 0 0
## 353 33 1 2 12 18 9 0 0 0 0 0
## 354 33 1 2 12 18 9 0 0 0 0 0
## 355 33 1 2 12 18 9 0 0 0 0 0
## 356 33 1 2 12 18 9 0 0 0 0 0
## 357 33 1 2 12 18 9 0 0 0 0 0
## 358 29 3 8 18 0 2 2 0 0 0 0
## 359 29 3 8 18 0 2 2 0 0 0 0
## 360 24 6 7 12 2 0 0 0 0 0 0
## 361 24 6 7 12 2 0 0 0 0 0 0
## 362 32 4 5 24 5 0 0 0 0 0 0
## 363 32 4 5 24 5 0 0 0 0 0 0
## 364 77 16 17 97 2 0 0 19 0 0 0
## 365 77 16 17 97 2 0 0 19 0 0 0
## 366 77 16 17 97 2 0 0 19 0 0 0
## 367 77 16 17 97 2 0 0 19 0 0 0
## 368 38 9 14 18 2 0 0 0 0 0 0
## 369 38 9 14 18 2 0 0 0 0 0 0
## 370 38 9 14 18 2 0 0 0 0 0 0
## 371 38 9 14 18 2 0 0 0 0 0 0
## 372 14 1 1 4 0 0 0 0 0 0 0
## 373 14 1 1 4 0 0 0 0 0 0 0
## 374 10 2 4 8 2 0 0 0 0 0 0
## 375 15 3 5 11 2 0 0 0 0 0 0
## 376 7 1 1 3 1 0 0 0 0 0 0
## 377 7 1 1 3 1 0 0 0 0 0 0
## 378 7 1 1 3 1 0 0 0 0 0 0
## 379 7 1 1 3 1 0 0 0 0 0 0
## 380 46 8 17 36 2 0 0 0 0 0 0
## 381 47 8 17 37 2 0 0 0 0 0 0
## 382 46 8 17 36 2 0 0 0 0 0 0
## 383 47 8 17 37 2 0 0 0 0 0 0
## 384 8 1 1 5 2 0 0 0 0 0 0
## 385 8 1 1 5 2 0 0 0 0 0 0
## 386 8 1 1 5 2 0 0 0 0 0 0
## 387 8 1 1 5 2 0 0 0 0 0 0
## 388 8 1 1 4 2 0 0 0 0 0 0
## 389 8 1 1 4 2 0 0 0 0 0 0
## 390 16 3 4 12 2 0 0 0 0 0 0
## 391 16 3 4 12 2 0 0 0 0 0 0
## 392 16 3 4 12 2 0 0 0 0 0 0
## 393 16 3 4 12 2 0 0 0 0 0 0
## 394 44 5 10 37 2 0 0 2 0 0 0
## 395 47 8 18 37 2 0 0 0 0 0 0
## 396 47 8 18 37 2 0 0 0 0 0 0
## 397 48 8 10 37 2 0 0 0 0 0 0
## 398 48 8 10 37 2 0 0 0 0 0 0
## 399 33 1 2 12 18 9 0 0 0 0 0
## 400 33 1 2 12 18 9 0 0 0 0 0
## 401 33 1 2 12 18 9 0 0 0 0 0
## 402 33 1 2 12 18 9 0 0 0 0 0
## 403 33 1 2 12 18 9 0 0 0 0 0
## 404 33 1 2 12 18 9 0 0 0 0 0
## 405 29 3 8 18 0 2 2 0 0 0 0
## 406 29 3 8 18 0 2 2 0 0 0 0
## 407 24 6 7 12 2 0 0 0 0 0 0
## 408 24 6 7 12 2 0 0 0 0 0 0
## 409 32 4 5 24 5 0 0 0 0 0 0
## 410 32 4 5 24 5 0 0 0 0 0 0
## 411 77 16 17 97 2 0 0 19 0 0 0
## 412 77 16 17 97 2 0 0 19 0 0 0
## 413 77 16 17 97 2 0 0 19 0 0 0
## 414 77 16 17 97 2 0 0 19 0 0 0
## 415 38 9 14 18 2 0 0 0 0 0 0
## 416 38 9 14 18 2 0 0 0 0 0 0
## 417 38 9 14 18 2 0 0 0 0 0 0
## 418 38 9 14 18 2 0 0 0 0 0 0
## 419 14 1 1 4 0 0 0 0 0 0 0
## 420 14 1 1 4 0 0 0 0 0 0 0
## 421 10 2 4 8 2 0 0 0 0 0 0
## 422 15 3 5 11 2 0 0 0 0 0 0
## 423 7 1 1 3 1 0 0 0 0 0 0
## 424 7 1 1 3 1 0 0 0 0 0 0
## 425 7 1 1 3 1 0 0 0 0 0 0
## 426 7 1 1 3 1 0 0 0 0 0 0
## 427 46 8 17 36 2 0 0 0 0 0 0
## 428 47 8 17 37 2 0 0 0 0 0 0
## 429 46 8 17 36 2 0 0 0 0 0 0
## 430 47 8 17 37 2 0 0 0 0 0 0
## 431 8 1 1 5 2 0 0 0 0 0 0
## 432 8 1 1 5 2 0 0 0 0 0 0
## 433 8 1 1 5 2 0 0 0 0 0 0
## 434 8 1 1 5 2 0 0 0 0 0 0
## 435 8 1 1 4 2 0 0 0 0 0 0
## 436 8 1 1 4 2 0 0 0 0 0 0
## 437 16 3 4 12 2 0 0 0 0 0 0
## 438 16 3 4 12 2 0 0 0 0 0 0
## 439 16 3 4 12 2 0 0 0 0 0 0
## 440 16 3 4 12 2 0 0 0 0 0 0
## 441 44 5 10 37 2 0 0 2 0 0 0
## 442 47 8 18 37 2 0 0 0 0 0 0
## 443 47 8 18 37 2 0 0 0 0 0 0
## 444 48 8 10 37 2 0 0 0 0 0 0
## 445 48 8 10 37 2 0 0 0 0 0 0
## 446 33 1 2 12 18 9 0 0 0 0 0
## 447 33 1 2 12 18 9 0 0 0 0 0
## 448 33 1 2 12 18 9 0 0 0 0 0
## 449 33 1 2 12 18 9 0 0 0 0 0
## 450 33 1 2 12 18 9 0 0 0 0 0
## 451 33 1 2 12 18 9 0 0 0 0 0
## 452 29 3 8 18 0 2 2 0 0 0 0
## 453 29 3 8 18 0 2 2 0 0 0 0
## 454 24 6 7 12 2 0 0 0 0 0 0
## 455 24 6 7 12 2 0 0 0 0 0 0
## 456 32 4 5 24 5 0 0 0 0 0 0
## 457 32 4 5 24 5 0 0 0 0 0 0
## 458 77 16 17 97 2 0 0 19 0 0 0
## 459 77 16 17 97 2 0 0 19 0 0 0
## 460 77 16 17 97 2 0 0 19 0 0 0
## 461 77 16 17 97 2 0 0 19 0 0 0
## 462 38 9 14 18 2 0 0 0 0 0 0
## 463 38 9 14 18 2 0 0 0 0 0 0
## 464 38 9 14 18 2 0 0 0 0 0 0
## 465 38 9 14 18 2 0 0 0 0 0 0
## 466 14 1 1 4 0 0 0 0 0 0 0
## 467 14 1 1 4 0 0 0 0 0 0 0
## 468 50 9 21 27 2 0 0 0 0 1 1
## 469 50 9 21 27 2 0 0 0 0 1 1
## 470 6 1 2 4 1 0 0 0 0 0 0
## 471 6 1 2 4 1 0 0 0 0 0 0
## 472 14 2 2 12 2 0 0 0 0 0 0
## 473 14 2 2 12 2 0 0 0 0 0 0
## 474 14 2 2 12 2 0 0 0 0 0 0
## 475 14 2 2 12 2 0 0 0 0 0 0
## 476 14 2 3 11 2 0 0 0 0 0 0
## 477 14 2 3 11 2 0 0 0 0 0 0
## 478 8 1 1 5 2 0 0 0 0 0 0
## 479 8 1 1 5 2 0 0 0 0 0 0
## 480 24 4 5 16 2 0 0 0 0 0 0
## 481 24 4 5 16 2 0 0 0 0 0 0
## 482 24 4 5 16 2 0 0 0 0 0 0
## 483 24 4 5 16 2 0 0 0 0 0 0
## 484 58 10 21 48 2 0 0 0 0 0 0
## 485 58 10 21 48 2 0 0 0 0 0 0
## 486 58 10 21 48 2 0 0 0 0 0 0
## 487 58 10 21 48 2 0 0 0 0 0 0
## 488 7 1 1 7 1 0 0 0 0 0 0
## 489 7 1 1 7 1 0 0 0 0 0 0
## 490 7 1 1 7 1 0 0 0 0 0 0
## 491 7 1 1 7 1 0 0 0 0 0 0
## 492 23 4 6 19 2 0 0 0 0 0 0
## 493 23 4 6 19 2 0 0 0 0 0 0
## 494 23 4 6 19 2 0 0 0 0 0 0
## 495 23 4 6 19 2 0 0 0 0 0 0
## 496 14 3 4 13 2 0 0 0 0 0 0
## 497 14 3 4 13 2 0 0 0 0 0 0
## 498 14 3 4 13 2 0 0 0 0 0 0
## 499 14 3 4 13 2 0 0 0 0 0 0
## 500 69 9 14 63 2 2 0 6 0 0 0
## 501 69 9 14 63 2 2 0 6 0 0 0
## 502 50 9 21 43 2 0 0 0 0 0 0
## 503 50 9 21 43 2 0 0 0 0 0 0
## 504 50 9 21 43 2 0 0 0 0 0 0
## 505 50 9 21 43 2 0 0 0 0 0 0
## 506 35 5 6 29 2 0 0 0 0 0 0
## 507 35 5 6 29 2 0 0 0 0 0 0
## 508 34 5 9 22 5 0 0 1 0 0 0
## 509 34 5 9 22 5 0 0 1 0 0 0
## 510 34 5 9 22 5 0 0 1 0 0 0
## 511 34 5 9 22 5 0 0 1 0 0 0
## 512 105 14 23 62 2 0 0 3 0 0 0
## 513 105 14 23 62 2 0 0 3 0 0 0
## 514 47 8 10 39 2 0 0 0 0 0 0
## 515 47 8 10 39 2 0 0 0 0 0 0
## 516 47 8 10 39 2 0 0 0 0 0 0
## 517 47 8 10 39 2 0 0 0 0 0 0
## 518 28 3 8 20 0 2 2 0 0 0 0
## 519 28 3 8 20 0 2 2 0 0 0 0
## 520 29 8 9 18 2 0 0 0 0 0 0
## 521 29 8 9 18 2 0 0 0 0 0 0
## 522 17 3 5 9 2 0 0 0 0 0 0
## 523 17 3 5 9 2 0 0 0 0 0 0
## 524 17 3 5 9 2 0 0 0 0 0 0
## 525 17 3 5 9 2 0 0 0 0 0 0
## 526 13 3 5 8 2 0 0 0 0 0 0
## 527 13 3 5 8 2 0 0 0 0 0 0
## 528 12 2 4 5 1 0 0 0 0 0 0
## 529 12 2 4 5 1 0 0 0 0 0 0
## 530 12 2 4 5 1 0 0 0 0 0 0
## 531 12 2 4 5 1 0 0 0 0 0 0
## 532 20 5 6 14 2 0 0 0 0 0 0
## 533 20 5 6 14 2 0 0 0 0 0 0
## 534 20 5 6 14 2 0 0 0 0 0 0
## 535 20 5 6 14 2 0 0 0 0 0 0
## 536 20 5 6 14 2 0 0 0 0 0 0
## 537 20 5 6 14 2 0 0 0 0 0 0
## 538 20 3 3 10 2 0 0 0 0 0 0
## 539 20 3 3 10 2 0 0 0 0 0 0
## 540 20 3 3 10 2 0 0 0 0 0 0
## 541 20 3 3 10 2 0 0 0 0 0 0
## 542 30 5 12 14 3 0 0 0 0 0 0
## 543 30 5 12 14 3 0 0 0 0 0 0
## 544 30 5 12 14 3 0 0 0 0 0 0
## 545 30 5 12 14 3 0 0 0 0 0 0
## 546 18 5 6 11 2 0 0 0 0 0 0
## 547 18 5 6 11 2 0 0 0 0 0 0
## 548 18 5 6 11 2 0 0 0 0 0 0
## 549 18 5 6 11 2 0 0 0 0 0 0
## 550 18 5 6 11 2 0 0 0 0 0 0
## 551 18 5 6 11 2 0 0 0 0 0 0
## 552 18 5 6 11 2 0 0 0 0 0 0
## 553 18 5 6 11 2 0 0 0 0 0 0
## 554 75 13 15 47 2 2 0 4 0 0 0
## 555 75 13 15 47 2 2 0 4 0 0 0
## 556 18 5 6 11 2 0 0 0 0 0 0
## 557 18 5 6 11 2 0 0 0 0 0 0
## 558 18 5 6 11 2 0 0 0 0 0 0
## 559 18 5 6 11 2 0 0 0 0 0 0
## 560 18 5 6 11 2 0 0 0 0 0 0
## 561 18 5 6 11 2 0 0 0 0 0 0
## 562 18 5 6 11 2 0 0 0 0 0 0
## 563 18 5 6 11 2 0 0 0 0 0 0
## 564 13 2 2 12 2 0 0 0 0 0 0
## 565 13 2 2 12 2 0 0 0 0 0 0
## 566 11 3 3 6 0 0 0 0 0 0 0
## 567 11 3 3 6 0 0 0 0 0 0 0
## 568 17 3 4 9 2 0 0 0 0 0 0
## 569 17 3 4 9 2 0 0 0 0 0 0
## 570 17 3 4 9 2 0 0 0 0 0 0
## 571 17 3 4 9 2 0 0 0 0 0 0
## 572 18 5 6 11 2 0 0 0 0 0 0
## 573 18 5 6 11 2 0 0 0 0 0 0
## 574 18 5 6 11 2 0 0 0 0 0 0
## 575 18 5 6 11 2 0 0 0 0 0 0
## 576 114 25 26 158 2 0 0 28 0 0 0
## 577 114 25 26 158 2 0 0 28 0 0 0
## 578 114 25 26 158 2 0 0 28 0 0 0
## 579 114 25 26 158 2 0 0 28 0 0 0
## 580 36 9 12 19 2 0 0 0 0 0 0
## 581 36 9 12 19 2 0 0 0 0 0 0
## 582 36 9 12 19 2 0 0 0 0 0 0
## 583 36 9 12 19 2 0 0 0 0 0 0
## 584 156 19 26 94 3 3 9 0 0 0 0
## 585 156 19 26 94 3 3 9 0 0 0 0
## 586 6 1 1 3 0 0 0 0 0 0 0
## 587 6 1 1 3 0 0 0 0 0 0 0
## 588 30 4 5 25 5 0 0 0 0 0 0
## 589 30 4 5 25 5 0 0 0 0 0 0
## 590 50 9 21 27 2 0 0 0 0 1 1
## 591 50 9 21 27 2 0 0 0 0 1 1
## 592 30 4 12 9 0 2 0 0 0 0 0
## 593 30 4 12 9 0 2 0 0 0 0 0
## 594 30 4 12 9 0 2 0 0 0 0 0
## 595 30 4 12 9 0 2 0 0 0 0 0
## 596 30 4 12 9 0 2 0 0 0 0 0
## 597 30 4 12 9 0 2 0 0 0 0 0
## 598 30 4 12 9 0 2 0 0 0 0 0
## 599 30 4 12 9 0 2 0 0 0 0 0
## 600 30 4 12 9 0 2 0 0 0 0 0
## 601 30 4 12 9 0 2 0 0 0 0 0
## 602 30 4 12 9 0 2 0 0 0 0 0
## 603 30 4 12 9 0 2 0 0 0 0 0
## 604 30 4 12 9 0 2 0 0 0 0 0
## 605 30 4 12 9 0 2 0 0 0 0 0
## 606 10 1 2 7 3 1 0 0 0 0 0
## 607 10 1 2 7 3 1 0 0 0 0 0
## 608 10 1 2 7 3 1 0 0 0 0 0
## 609 10 1 2 7 3 1 0 0 0 0 0
## 610 10 1 2 7 3 1 0 0 0 0 0
## 611 10 1 2 7 3 1 0 0 0 0 0
## 612 10 1 2 7 3 1 0 0 0 0 0
## 613 10 1 2 7 3 1 0 0 0 0 0
## 614 10 1 2 7 3 1 0 0 0 0 0
## 615 10 1 2 7 3 1 0 0 0 0 0
## 616 10 1 2 7 3 1 0 0 0 0 0
## 617 10 1 2 7 3 1 0 0 0 0 0
## 618 10 1 2 7 3 1 0 0 0 0 0
## 619 10 1 2 7 3 1 0 0 0 0 0
## 620 6 1 2 4 1 0 0 0 0 0 0
## 621 6 1 2 4 1 0 0 0 0 0 0
## 622 14 2 2 12 2 0 0 0 0 0 0
## 623 14 2 2 12 2 0 0 0 0 0 0
## 624 14 2 2 12 2 0 0 0 0 0 0
## 625 14 2 2 12 2 0 0 0 0 0 0
## 626 14 2 3 11 2 0 0 0 0 0 0
## 627 14 2 3 11 2 0 0 0 0 0 0
## 628 8 1 1 5 2 0 0 0 0 0 0
## 629 8 1 1 5 2 0 0 0 0 0 0
## 630 24 4 5 16 2 0 0 0 0 0 0
## 631 24 4 5 16 2 0 0 0 0 0 0
## 632 24 4 5 16 2 0 0 0 0 0 0
## 633 24 4 5 16 2 0 0 0 0 0 0
## 634 58 10 21 48 2 0 0 0 0 0 0
## 635 58 10 21 48 2 0 0 0 0 0 0
## 636 58 10 21 48 2 0 0 0 0 0 0
## 637 58 10 21 48 2 0 0 0 0 0 0
## 638 7 1 1 7 1 0 0 0 0 0 0
## 639 7 1 1 7 1 0 0 0 0 0 0
## 640 7 1 1 7 1 0 0 0 0 0 0
## 641 7 1 1 7 1 0 0 0 0 0 0
## 642 23 4 6 19 2 0 0 0 0 0 0
## 643 23 4 6 19 2 0 0 0 0 0 0
## 644 23 4 6 19 2 0 0 0 0 0 0
## 645 23 4 6 19 2 0 0 0 0 0 0
## 646 14 3 4 13 2 0 0 0 0 0 0
## 647 14 3 4 13 2 0 0 0 0 0 0
## 648 14 3 4 13 2 0 0 0 0 0 0
## 649 14 3 4 13 2 0 0 0 0 0 0
## 650 69 9 14 63 2 2 0 6 0 0 0
## 651 69 9 14 63 2 2 0 6 0 0 0
## 652 50 9 21 43 2 0 0 0 0 0 0
## 653 50 9 21 43 2 0 0 0 0 0 0
## 654 50 9 21 43 2 0 0 0 0 0 0
## 655 50 9 21 43 2 0 0 0 0 0 0
## 656 35 5 6 29 2 0 0 0 0 0 0
## 657 35 5 6 29 2 0 0 0 0 0 0
## 658 34 5 9 22 5 0 0 1 0 0 0
## 659 34 5 9 22 5 0 0 1 0 0 0
## 660 34 5 9 22 5 0 0 1 0 0 0
## 661 34 5 9 22 5 0 0 1 0 0 0
## 662 105 14 23 62 2 0 0 3 0 0 0
## 663 105 14 23 62 2 0 0 3 0 0 0
## 664 47 8 10 39 2 0 0 0 0 0 0
## 665 47 8 10 39 2 0 0 0 0 0 0
## 666 47 8 10 39 2 0 0 0 0 0 0
## 667 47 8 10 39 2 0 0 0 0 0 0
## 668 28 3 8 20 0 2 2 0 0 0 0
## 669 28 3 8 20 0 2 2 0 0 0 0
## 670 29 8 9 18 2 0 0 0 0 0 0
## 671 29 8 9 18 2 0 0 0 0 0 0
## 672 17 3 5 9 2 0 0 0 0 0 0
## 673 17 3 5 9 2 0 0 0 0 0 0
## 674 17 3 5 9 2 0 0 0 0 0 0
## 675 17 3 5 9 2 0 0 0 0 0 0
## 676 13 3 5 8 2 0 0 0 0 0 0
## 677 13 3 5 8 2 0 0 0 0 0 0
## 678 12 2 4 5 1 0 0 0 0 0 0
## 679 12 2 4 5 1 0 0 0 0 0 0
## 680 12 2 4 5 1 0 0 0 0 0 0
## 681 12 2 4 5 1 0 0 0 0 0 0
## 682 20 5 6 14 2 0 0 0 0 0 0
## 683 20 5 6 14 2 0 0 0 0 0 0
## 684 20 5 6 14 2 0 0 0 0 0 0
## 685 20 5 6 14 2 0 0 0 0 0 0
## 686 20 5 6 14 2 0 0 0 0 0 0
## 687 20 5 6 14 2 0 0 0 0 0 0
## 688 20 3 3 10 2 0 0 0 0 0 0
## 689 20 3 3 10 2 0 0 0 0 0 0
## 690 20 3 3 10 2 0 0 0 0 0 0
## 691 20 3 3 10 2 0 0 0 0 0 0
## 692 30 5 12 14 3 0 0 0 0 0 0
## 693 30 5 12 14 3 0 0 0 0 0 0
## 694 30 5 12 14 3 0 0 0 0 0 0
## 695 30 5 12 14 3 0 0 0 0 0 0
## 696 18 5 6 11 2 0 0 0 0 0 0
## 697 18 5 6 11 2 0 0 0 0 0 0
## 698 18 5 6 11 2 0 0 0 0 0 0
## 699 18 5 6 11 2 0 0 0 0 0 0
## 700 18 5 6 11 2 0 0 0 0 0 0
## 701 18 5 6 11 2 0 0 0 0 0 0
## 702 18 5 6 11 2 0 0 0 0 0 0
## 703 18 5 6 11 2 0 0 0 0 0 0
## 704 75 13 15 47 2 2 0 4 0 0 0
## 705 75 13 15 47 2 2 0 4 0 0 0
## 706 18 5 6 11 2 0 0 0 0 0 0
## 707 18 5 6 11 2 0 0 0 0 0 0
## 708 18 5 6 11 2 0 0 0 0 0 0
## 709 18 5 6 11 2 0 0 0 0 0 0
## 710 18 5 6 11 2 0 0 0 0 0 0
## 711 18 5 6 11 2 0 0 0 0 0 0
## 712 18 5 6 11 2 0 0 0 0 0 0
## 713 18 5 6 11 2 0 0 0 0 0 0
## 714 13 2 2 12 2 0 0 0 0 0 0
## 715 13 2 2 12 2 0 0 0 0 0 0
## 716 11 3 3 6 0 0 0 0 0 0 0
## 717 11 3 3 6 0 0 0 0 0 0 0
## 718 17 3 4 9 2 0 0 0 0 0 0
## 719 17 3 4 9 2 0 0 0 0 0 0
## 720 17 3 4 9 2 0 0 0 0 0 0
## 721 17 3 4 9 2 0 0 0 0 0 0
## 722 18 5 6 11 2 0 0 0 0 0 0
## 723 18 5 6 11 2 0 0 0 0 0 0
## 724 18 5 6 11 2 0 0 0 0 0 0
## 725 18 5 6 11 2 0 0 0 0 0 0
## 726 114 25 26 158 2 0 0 28 0 0 0
## 727 114 25 26 158 2 0 0 28 0 0 0
## 728 114 25 26 158 2 0 0 28 0 0 0
## 729 114 25 26 158 2 0 0 28 0 0 0
## 730 36 9 12 19 2 0 0 0 0 0 0
## 731 36 9 12 19 2 0 0 0 0 0 0
## 732 36 9 12 19 2 0 0 0 0 0 0
## 733 36 9 12 19 2 0 0 0 0 0 0
## 734 156 19 26 94 3 3 9 0 0 0 0
## 735 156 19 26 94 3 3 9 0 0 0 0
## 736 6 1 1 3 0 0 0 0 0 0 0
## 737 6 1 1 3 0 0 0 0 0 0 0
## 738 30 4 5 25 5 0 0 0 0 0 0
## 739 30 4 5 25 5 0 0 0 0 0 0
## 740 50 9 21 27 2 0 0 0 0 1 1
## 741 50 9 21 27 2 0 0 0 0 1 1
## 742 199 21 46 135 2 2 2 5 0 0 0
## 743 199 21 46 135 2 2 2 5 0 0 0
## 744 199 21 46 135 2 2 2 5 0 0 0
## 745 199 21 46 135 2 2 2 5 0 0 0
## 746 199 21 46 135 2 2 2 5 0 0 0
## 747 199 21 46 135 2 2 2 5 0 0 0
## 748 199 21 46 135 2 2 2 5 0 0 0
## 749 199 21 46 135 2 2 2 5 0 0 0
## 750 199 21 46 135 2 2 2 5 0 0 0
## 751 199 21 46 135 2 2 2 5 0 0 0
## 752 199 21 46 135 2 2 2 5 0 0 0
## 753 199 21 46 135 2 2 2 5 0 0 0
## 754 30 4 12 9 0 2 0 0 0 0 0
## 755 30 4 12 9 0 2 0 0 0 0 0
## 756 30 4 12 9 0 2 0 0 0 0 0
## 757 30 4 12 9 0 2 0 0 0 0 0
## 758 30 4 12 9 0 2 0 0 0 0 0
## 759 30 4 12 9 0 2 0 0 0 0 0
## 760 30 4 12 9 0 2 0 0 0 0 0
## 761 30 4 12 9 0 2 0 0 0 0 0
## 762 30 4 12 9 0 2 0 0 0 0 0
## 763 30 4 12 9 0 2 0 0 0 0 0
## 764 30 4 12 9 0 2 0 0 0 0 0
## 765 30 4 12 9 0 2 0 0 0 0 0
## 766 30 4 12 9 0 2 0 0 0 0 0
## 767 30 4 12 9 0 2 0 0 0 0 0
## 768 10 1 2 7 3 1 0 0 0 0 0
## 769 10 1 2 7 3 1 0 0 0 0 0
## 770 10 1 2 7 3 1 0 0 0 0 0
## 771 10 1 2 7 3 1 0 0 0 0 0
## 772 10 1 2 7 3 1 0 0 0 0 0
## 773 10 1 2 7 3 1 0 0 0 0 0
## 774 10 1 2 7 3 1 0 0 0 0 0
## 775 10 1 2 7 3 1 0 0 0 0 0
## 776 10 1 2 7 3 1 0 0 0 0 0
## 777 10 1 2 7 3 1 0 0 0 0 0
## 778 10 1 2 7 3 1 0 0 0 0 0
## 779 10 1 2 7 3 1 0 0 0 0 0
## 780 10 1 2 7 3 1 0 0 0 0 0
## 781 10 1 2 7 3 1 0 0 0 0 0
## 782 6 1 2 4 1 0 0 0 0 0 0
## 783 6 1 2 4 1 0 0 0 0 0 0
## 784 14 2 2 12 2 0 0 0 0 0 0
## 785 14 2 2 12 2 0 0 0 0 0 0
## 786 14 2 2 12 2 0 0 0 0 0 0
## 787 14 2 2 12 2 0 0 0 0 0 0
## 788 14 2 3 11 2 0 0 0 0 0 0
## 789 14 2 3 11 2 0 0 0 0 0 0
## 790 8 1 1 5 2 0 0 0 0 0 0
## 791 8 1 1 5 2 0 0 0 0 0 0
## 792 24 4 5 16 2 0 0 0 0 0 0
## 793 24 4 5 16 2 0 0 0 0 0 0
## 794 24 4 5 16 2 0 0 0 0 0 0
## 795 24 4 5 16 2 0 0 0 0 0 0
## 796 58 10 21 48 2 0 0 0 0 0 0
## 797 58 10 21 48 2 0 0 0 0 0 0
## 798 58 10 21 48 2 0 0 0 0 0 0
## 799 58 10 21 48 2 0 0 0 0 0 0
## 800 7 1 1 7 1 0 0 0 0 0 0
## 801 7 1 1 7 1 0 0 0 0 0 0
## 802 7 1 1 7 1 0 0 0 0 0 0
## 803 7 1 1 7 1 0 0 0 0 0 0
## 804 23 4 6 19 2 0 0 0 0 0 0
## 805 23 4 6 19 2 0 0 0 0 0 0
## 806 23 4 6 19 2 0 0 0 0 0 0
## 807 23 4 6 19 2 0 0 0 0 0 0
## 808 14 3 4 13 2 0 0 0 0 0 0
## 809 14 3 4 13 2 0 0 0 0 0 0
## 810 14 3 4 13 2 0 0 0 0 0 0
## 811 14 3 4 13 2 0 0 0 0 0 0
## 812 69 9 14 63 2 2 0 6 0 0 0
## 813 69 9 14 63 2 2 0 6 0 0 0
## 814 50 9 21 43 2 0 0 0 0 0 0
## 815 50 9 21 43 2 0 0 0 0 0 0
## 816 50 9 21 43 2 0 0 0 0 0 0
## 817 50 9 21 43 2 0 0 0 0 0 0
## 818 35 5 6 29 2 0 0 0 0 0 0
## 819 35 5 6 29 2 0 0 0 0 0 0
## 820 34 5 9 22 5 0 0 1 0 0 0
## 821 34 5 9 22 5 0 0 1 0 0 0
## 822 34 5 9 22 5 0 0 1 0 0 0
## 823 34 5 9 22 5 0 0 1 0 0 0
## 824 105 14 23 62 2 0 0 3 0 0 0
## 825 105 14 23 62 2 0 0 3 0 0 0
## 826 47 8 10 39 2 0 0 0 0 0 0
## 827 47 8 10 39 2 0 0 0 0 0 0
## 828 47 8 10 39 2 0 0 0 0 0 0
## 829 47 8 10 39 2 0 0 0 0 0 0
## 830 28 3 8 20 0 2 2 0 0 0 0
## 831 28 3 8 20 0 2 2 0 0 0 0
## 832 29 8 9 18 2 0 0 0 0 0 0
## 833 29 8 9 18 2 0 0 0 0 0 0
## 834 25 3 5 14 4 0 0 0 0 0 0
## 835 25 3 5 14 4 0 0 0 0 0 0
## 836 25 3 5 14 4 0 0 0 0 0 0
## 837 25 3 5 14 4 0 0 0 0 0 0
## 838 17 3 5 9 2 0 0 0 0 0 0
## 839 17 3 5 9 2 0 0 0 0 0 0
## 840 17 3 5 9 2 0 0 0 0 0 0
## 841 17 3 5 9 2 0 0 0 0 0 0
## 842 13 3 5 8 2 0 0 0 0 0 0
## 843 13 3 5 8 2 0 0 0 0 0 0
## 844 12 2 4 5 1 0 0 0 0 0 0
## 845 12 2 4 5 1 0 0 0 0 0 0
## 846 12 2 4 5 1 0 0 0 0 0 0
## 847 12 2 4 5 1 0 0 0 0 0 0
## 848 20 5 6 14 2 0 0 0 0 0 0
## 849 20 5 6 14 2 0 0 0 0 0 0
## 850 20 5 6 14 2 0 0 0 0 0 0
## 851 20 5 6 14 2 0 0 0 0 0 0
## 852 20 5 6 14 2 0 0 0 0 0 0
## 853 20 5 6 14 2 0 0 0 0 0 0
## 854 20 3 3 10 2 0 0 0 0 0 0
## 855 20 3 3 10 2 0 0 0 0 0 0
## 856 20 3 3 10 2 0 0 0 0 0 0
## 857 20 3 3 10 2 0 0 0 0 0 0
## 858 30 5 12 14 3 0 0 0 0 0 0
## 859 30 5 12 14 3 0 0 0 0 0 0
## 860 30 5 12 14 3 0 0 0 0 0 0
## 861 30 5 12 14 3 0 0 0 0 0 0
## 862 18 5 6 11 2 0 0 0 0 0 0
## 863 18 5 6 11 2 0 0 0 0 0 0
## 864 18 5 6 11 2 0 0 0 0 0 0
## 865 18 5 6 11 2 0 0 0 0 0 0
## 866 18 5 6 11 2 0 0 0 0 0 0
## 867 18 5 6 11 2 0 0 0 0 0 0
## 868 18 5 6 11 2 0 0 0 0 0 0
## 869 18 5 6 11 2 0 0 0 0 0 0
## 870 75 13 15 47 2 2 0 4 0 0 0
## 871 75 13 15 47 2 2 0 4 0 0 0
## 872 18 5 6 11 2 0 0 0 0 0 0
## 873 18 5 6 11 2 0 0 0 0 0 0
## 874 18 5 6 11 2 0 0 0 0 0 0
## 875 18 5 6 11 2 0 0 0 0 0 0
## 876 18 5 6 11 2 0 0 0 0 0 0
## 877 18 5 6 11 2 0 0 0 0 0 0
## 878 18 5 6 11 2 0 0 0 0 0 0
## 879 18 5 6 11 2 0 0 0 0 0 0
## 880 13 2 2 12 2 0 0 0 0 0 0
## 881 13 2 2 12 2 0 0 0 0 0 0
## 882 11 3 3 6 0 0 0 0 0 0 0
## 883 11 3 3 6 0 0 0 0 0 0 0
## 884 17 3 4 9 2 0 0 0 0 0 0
## 885 17 3 4 9 2 0 0 0 0 0 0
## 886 17 3 4 9 2 0 0 0 0 0 0
## 887 17 3 4 9 2 0 0 0 0 0 0
## 888 18 5 6 11 2 0 0 0 0 0 0
## 889 18 5 6 11 2 0 0 0 0 0 0
## 890 18 5 6 11 2 0 0 0 0 0 0
## 891 18 5 6 11 2 0 0 0 0 0 0
## 892 114 25 26 158 2 0 0 28 0 0 0
## 893 114 25 26 158 2 0 0 28 0 0 0
## 894 114 25 26 158 2 0 0 28 0 0 0
## 895 114 25 26 158 2 0 0 28 0 0 0
## 896 41 5 8 20 2 0 0 0 0 0 0
## 897 41 5 8 20 2 0 0 0 0 0 0
## 898 27 5 6 13 2 0 0 0 0 0 0
## 899 27 5 6 13 2 0 0 0 0 0 0
## 900 36 9 12 19 2 0 0 0 0 0 0
## 901 36 9 12 19 2 0 0 0 0 0 0
## 902 36 9 12 19 2 0 0 0 0 0 0
## 903 36 9 12 19 2 0 0 0 0 0 0
## 904 156 19 26 94 3 3 9 0 0 0 0
## 905 156 19 26 94 3 3 9 0 0 0 0
## 906 30 4 5 25 5 0 0 0 0 0 0
## 907 30 4 5 25 5 0 0 0 0 0 0
## 908 95 12 21 47 18 9 9 1 0 0 0
## 909 95 12 21 47 18 9 9 1 0 0 0
## 910 95 12 21 47 18 9 9 1 0 0 0
## 911 95 12 21 47 18 9 9 1 0 0 0
## 912 50 9 21 27 2 0 0 0 0 1 1
## 913 50 9 21 27 2 0 0 0 0 1 1
## 914 199 21 46 135 2 2 2 5 0 0 0
## 915 199 21 46 135 2 2 2 5 0 0 0
## 916 199 21 46 135 2 2 2 5 0 0 0
## 917 199 21 46 135 2 2 2 5 0 0 0
## 918 199 21 46 135 2 2 2 5 0 0 0
## 919 199 21 46 135 2 2 2 5 0 0 0
## 920 199 21 46 135 2 2 2 5 0 0 0
## 921 199 21 46 135 2 2 2 5 0 0 0
## 922 199 21 46 135 2 2 2 5 0 0 0
## 923 199 21 46 135 2 2 2 5 0 0 0
## 924 199 21 46 135 2 2 2 5 0 0 0
## 925 199 21 46 135 2 2 2 5 0 0 0
## 926 30 4 12 9 0 2 0 0 0 0 0
## 927 30 4 12 9 0 2 0 0 0 0 0
## 928 30 4 12 9 0 2 0 0 0 0 0
## 929 30 4 12 9 0 2 0 0 0 0 0
## 930 30 4 12 9 0 2 0 0 0 0 0
## 931 30 4 12 9 0 2 0 0 0 0 0
## 932 30 4 12 9 0 2 0 0 0 0 0
## 933 30 4 12 9 0 2 0 0 0 0 0
## 934 30 4 12 9 0 2 0 0 0 0 0
## 935 30 4 12 9 0 2 0 0 0 0 0
## 936 30 4 12 9 0 2 0 0 0 0 0
## 937 30 4 12 9 0 2 0 0 0 0 0
## 938 30 4 12 9 0 2 0 0 0 0 0
## 939 30 4 12 9 0 2 0 0 0 0 0
## 940 10 1 2 7 3 1 0 0 0 0 0
## 941 10 1 2 7 3 1 0 0 0 0 0
## 942 10 1 2 7 3 1 0 0 0 0 0
## 943 10 1 2 7 3 1 0 0 0 0 0
## 944 10 1 2 7 3 1 0 0 0 0 0
## 945 10 1 2 7 3 1 0 0 0 0 0
## 946 10 1 2 7 3 1 0 0 0 0 0
## 947 10 1 2 7 3 1 0 0 0 0 0
## 948 10 1 2 7 3 1 0 0 0 0 0
## 949 10 1 2 7 3 1 0 0 0 0 0
## 950 10 1 2 7 3 1 0 0 0 0 0
## 951 10 1 2 7 3 1 0 0 0 0 0
## 952 10 1 2 7 3 1 0 0 0 0 0
## 953 10 1 2 7 3 1 0 0 0 0 0
## 954 6 1 2 4 1 0 0 0 0 0 0
## 955 6 1 2 4 1 0 0 0 0 0 0
## 956 14 2 2 12 2 0 0 0 0 0 0
## 957 14 2 2 12 2 0 0 0 0 0 0
## 958 14 2 2 12 2 0 0 0 0 0 0
## 959 14 2 2 12 2 0 0 0 0 0 0
## 960 14 2 3 11 2 0 0 0 0 0 0
## 961 14 2 3 11 2 0 0 0 0 0 0
## 962 8 1 1 5 2 0 0 0 0 0 0
## 963 8 1 1 5 2 0 0 0 0 0 0
## 964 24 4 5 16 2 0 0 0 0 0 0
## 965 24 4 5 16 2 0 0 0 0 0 0
## 966 24 4 5 16 2 0 0 0 0 0 0
## 967 24 4 5 16 2 0 0 0 0 0 0
## 968 58 10 21 48 2 0 0 0 0 0 0
## 969 58 10 21 48 2 0 0 0 0 0 0
## 970 58 10 21 48 2 0 0 0 0 0 0
## 971 58 10 21 48 2 0 0 0 0 0 0
## 972 7 1 1 7 1 0 0 0 0 0 0
## 973 7 1 1 7 1 0 0 0 0 0 0
## 974 7 1 1 7 1 0 0 0 0 0 0
## 975 7 1 1 7 1 0 0 0 0 0 0
## 976 23 4 6 19 2 0 0 0 0 0 0
## 977 23 4 6 19 2 0 0 0 0 0 0
## 978 23 4 6 19 2 0 0 0 0 0 0
## 979 23 4 6 19 2 0 0 0 0 0 0
## 980 14 3 4 13 2 0 0 0 0 0 0
## 981 14 3 4 13 2 0 0 0 0 0 0
## 982 14 3 4 13 2 0 0 0 0 0 0
## 983 14 3 4 13 2 0 0 0 0 0 0
## 984 69 9 14 63 2 2 0 6 0 0 0
## 985 69 9 14 63 2 2 0 6 0 0 0
## 986 50 9 21 43 2 0 0 0 0 0 0
## 987 50 9 21 43 2 0 0 0 0 0 0
## 988 50 9 21 43 2 0 0 0 0 0 0
## 989 50 9 21 43 2 0 0 0 0 0 0
## 990 35 5 6 29 2 0 0 0 0 0 0
## 991 35 5 6 29 2 0 0 0 0 0 0
## 992 34 5 9 22 5 0 0 1 0 0 0
## 993 34 5 9 22 5 0 0 1 0 0 0
## 994 34 5 9 22 5 0 0 1 0 0 0
## 995 34 5 9 22 5 0 0 1 0 0 0
## 996 105 14 23 62 2 0 0 3 0 0 0
## 997 105 14 23 62 2 0 0 3 0 0 0
## 998 47 8 10 39 2 0 0 0 0 0 0
## 999 47 8 10 39 2 0 0 0 0 0 0
## 1000 47 8 10 39 2 0 0 0 0 0 0
## 1001 47 8 10 39 2 0 0 0 0 0 0
## 1002 28 3 8 20 0 2 2 0 0 0 0
## 1003 28 3 8 20 0 2 2 0 0 0 0
## 1004 29 8 9 18 2 0 0 0 0 0 0
## 1005 29 8 9 18 2 0 0 0 0 0 0
## 1006 25 3 5 14 4 0 0 0 0 0 0
## 1007 25 3 5 14 4 0 0 0 0 0 0
## 1008 25 3 5 14 4 0 0 0 0 0 0
## 1009 25 3 5 14 4 0 0 0 0 0 0
## 1010 17 3 5 9 2 0 0 0 0 0 0
## 1011 17 3 5 9 2 0 0 0 0 0 0
## 1012 17 3 5 9 2 0 0 0 0 0 0
## 1013 17 3 5 9 2 0 0 0 0 0 0
## 1014 13 3 5 8 2 0 0 0 0 0 0
## 1015 13 3 5 8 2 0 0 0 0 0 0
## 1016 12 2 4 5 1 0 0 0 0 0 0
## 1017 12 2 4 5 1 0 0 0 0 0 0
## 1018 12 2 4 5 1 0 0 0 0 0 0
## 1019 12 2 4 5 1 0 0 0 0 0 0
## 1020 20 5 6 14 2 0 0 0 0 0 0
## 1021 20 5 6 14 2 0 0 0 0 0 0
## 1022 20 5 6 14 2 0 0 0 0 0 0
## 1023 20 5 6 14 2 0 0 0 0 0 0
## 1024 20 5 6 14 2 0 0 0 0 0 0
## 1025 20 5 6 14 2 0 0 0 0 0 0
## 1026 20 3 3 10 2 0 0 0 0 0 0
## 1027 20 3 3 10 2 0 0 0 0 0 0
## 1028 20 3 3 10 2 0 0 0 0 0 0
## 1029 20 3 3 10 2 0 0 0 0 0 0
## 1030 30 5 12 14 3 0 0 0 0 0 0
## 1031 30 5 12 14 3 0 0 0 0 0 0
## 1032 30 5 12 14 3 0 0 0 0 0 0
## 1033 30 5 12 14 3 0 0 0 0 0 0
## 1034 18 5 6 11 2 0 0 0 0 0 0
## 1035 18 5 6 11 2 0 0 0 0 0 0
## 1036 18 5 6 11 2 0 0 0 0 0 0
## 1037 18 5 6 11 2 0 0 0 0 0 0
## 1038 18 5 6 11 2 0 0 0 0 0 0
## 1039 18 5 6 11 2 0 0 0 0 0 0
## 1040 18 5 6 11 2 0 0 0 0 0 0
## 1041 18 5 6 11 2 0 0 0 0 0 0
## 1042 75 13 15 47 2 2 0 4 0 0 0
## 1043 75 13 15 47 2 2 0 4 0 0 0
## 1044 18 5 6 11 2 0 0 0 0 0 0
## 1045 18 5 6 11 2 0 0 0 0 0 0
## 1046 18 5 6 11 2 0 0 0 0 0 0
## 1047 18 5 6 11 2 0 0 0 0 0 0
## 1048 18 5 6 11 2 0 0 0 0 0 0
## 1049 18 5 6 11 2 0 0 0 0 0 0
## 1050 18 5 6 11 2 0 0 0 0 0 0
## 1051 18 5 6 11 2 0 0 0 0 0 0
## 1052 13 2 2 12 2 0 0 0 0 0 0
## 1053 13 2 2 12 2 0 0 0 0 0 0
## 1054 11 3 3 6 0 0 0 0 0 0 0
## 1055 11 3 3 6 0 0 0 0 0 0 0
## 1056 17 3 4 9 2 0 0 0 0 0 0
## 1057 17 3 4 9 2 0 0 0 0 0 0
## 1058 17 3 4 9 2 0 0 0 0 0 0
## 1059 17 3 4 9 2 0 0 0 0 0 0
## 1060 18 5 6 11 2 0 0 0 0 0 0
## 1061 18 5 6 11 2 0 0 0 0 0 0
## 1062 18 5 6 11 2 0 0 0 0 0 0
## 1063 18 5 6 11 2 0 0 0 0 0 0
## 1064 114 25 26 158 2 0 0 28 0 0 0
## 1065 114 25 26 158 2 0 0 28 0 0 0
## 1066 114 25 26 158 2 0 0 28 0 0 0
## 1067 114 25 26 158 2 0 0 28 0 0 0
## 1068 41 5 8 20 2 0 0 0 0 0 0
## 1069 41 5 8 20 2 0 0 0 0 0 0
## 1070 27 5 6 13 2 0 0 0 0 0 0
## 1071 27 5 6 13 2 0 0 0 0 0 0
## 1072 36 9 12 19 2 0 0 0 0 0 0
## 1073 36 9 12 19 2 0 0 0 0 0 0
## 1074 36 9 12 19 2 0 0 0 0 0 0
## 1075 36 9 12 19 2 0 0 0 0 0 0
## 1076 156 19 26 94 3 3 9 0 0 0 0
## 1077 156 19 26 94 3 3 9 0 0 0 0
## 1078 30 4 5 25 5 0 0 0 0 0 0
## 1079 30 4 5 25 5 0 0 0 0 0 0
## 1080 95 12 21 47 18 9 9 1 0 0 0
## 1081 95 12 21 47 18 9 9 1 0 0 0
## 1082 95 12 21 47 18 9 9 1 0 0 0
## 1083 95 12 21 47 18 9 9 1 0 0 0
## 1084 50 9 21 27 2 0 0 0 0 1 1
## 1085 50 9 21 27 2 0 0 0 0 1 1
## 1086 199 21 46 135 2 2 2 5 0 0 0
## 1087 199 21 46 135 2 2 2 5 0 0 0
## 1088 199 21 46 135 2 2 2 5 0 0 0
## 1089 199 21 46 135 2 2 2 5 0 0 0
## 1090 199 21 46 135 2 2 2 5 0 0 0
## 1091 199 21 46 135 2 2 2 5 0 0 0
## 1092 199 21 46 135 2 2 2 5 0 0 0
## 1093 199 21 46 135 2 2 2 5 0 0 0
## 1094 199 21 46 135 2 2 2 5 0 0 0
## 1095 199 21 46 135 2 2 2 5 0 0 0
## 1096 199 21 46 135 2 2 2 5 0 0 0
## 1097 199 21 46 135 2 2 2 5 0 0 0
## 1098 30 4 12 9 0 2 0 0 0 0 0
## 1099 30 4 12 9 0 2 0 0 0 0 0
## 1100 30 4 12 9 0 2 0 0 0 0 0
## 1101 30 4 12 9 0 2 0 0 0 0 0
## 1102 30 4 12 9 0 2 0 0 0 0 0
## 1103 30 4 12 9 0 2 0 0 0 0 0
## 1104 30 4 12 9 0 2 0 0 0 0 0
## 1105 30 4 12 9 0 2 0 0 0 0 0
## 1106 30 4 12 9 0 2 0 0 0 0 0
## 1107 30 4 12 9 0 2 0 0 0 0 0
## 1108 30 4 12 9 0 2 0 0 0 0 0
## 1109 30 4 12 9 0 2 0 0 0 0 0
## 1110 30 4 12 9 0 2 0 0 0 0 0
## 1111 30 4 12 9 0 2 0 0 0 0 0
## 1112 10 1 2 7 3 1 0 0 0 0 0
## 1113 10 1 2 7 3 1 0 0 0 0 0
## 1114 10 1 2 7 3 1 0 0 0 0 0
## 1115 10 1 2 7 3 1 0 0 0 0 0
## 1116 10 1 2 7 3 1 0 0 0 0 0
## 1117 10 1 2 7 3 1 0 0 0 0 0
## 1118 10 1 2 7 3 1 0 0 0 0 0
## 1119 10 1 2 7 3 1 0 0 0 0 0
## 1120 10 1 2 7 3 1 0 0 0 0 0
## 1121 10 1 2 7 3 1 0 0 0 0 0
## 1122 10 1 2 7 3 1 0 0 0 0 0
## 1123 10 1 2 7 3 1 0 0 0 0 0
## 1124 10 1 2 7 3 1 0 0 0 0 0
## 1125 10 1 2 7 3 1 0 0 0 0 0
## 1126 6 1 2 4 1 0 0 0 0 0 0
## 1127 6 1 2 4 1 0 0 0 0 0 0
## 1128 14 2 2 12 2 0 0 0 0 0 0
## 1129 14 2 2 12 2 0 0 0 0 0 0
## 1130 14 2 2 12 2 0 0 0 0 0 0
## 1131 14 2 2 12 2 0 0 0 0 0 0
## 1132 14 2 3 11 2 0 0 0 0 0 0
## 1133 14 2 3 11 2 0 0 0 0 0 0
## 1134 8 1 1 5 2 0 0 0 0 0 0
## 1135 8 1 1 5 2 0 0 0 0 0 0
## 1136 24 4 5 16 2 0 0 0 0 0 0
## 1137 24 4 5 16 2 0 0 0 0 0 0
## 1138 24 4 5 16 2 0 0 0 0 0 0
## 1139 24 4 5 16 2 0 0 0 0 0 0
## 1140 58 10 21 48 2 0 0 0 0 0 0
## 1141 58 10 21 48 2 0 0 0 0 0 0
## 1142 58 10 21 48 2 0 0 0 0 0 0
## 1143 58 10 21 48 2 0 0 0 0 0 0
## 1144 7 1 1 7 1 0 0 0 0 0 0
## 1145 7 1 1 7 1 0 0 0 0 0 0
## 1146 7 1 1 7 1 0 0 0 0 0 0
## 1147 7 1 1 7 1 0 0 0 0 0 0
## 1148 23 4 6 19 2 0 0 0 0 0 0
## 1149 23 4 6 19 2 0 0 0 0 0 0
## 1150 23 4 6 19 2 0 0 0 0 0 0
## 1151 23 4 6 19 2 0 0 0 0 0 0
## 1152 14 3 4 13 2 0 0 0 0 0 0
## 1153 14 3 4 13 2 0 0 0 0 0 0
## 1154 14 3 4 13 2 0 0 0 0 0 0
## 1155 14 3 4 13 2 0 0 0 0 0 0
## 1156 69 9 14 63 2 2 0 6 0 0 0
## 1157 69 9 14 63 2 2 0 6 0 0 0
## 1158 50 9 21 43 2 0 0 0 0 0 0
## 1159 50 9 21 43 2 0 0 0 0 0 0
## 1160 50 9 21 43 2 0 0 0 0 0 0
## 1161 50 9 21 43 2 0 0 0 0 0 0
## 1162 35 5 6 29 2 0 0 0 0 0 0
## 1163 35 5 6 29 2 0 0 0 0 0 0
## 1164 34 5 9 22 5 0 0 1 0 0 0
## 1165 34 5 9 22 5 0 0 1 0 0 0
## 1166 34 5 9 22 5 0 0 1 0 0 0
## 1167 34 5 9 22 5 0 0 1 0 0 0
## 1168 105 14 23 62 2 0 0 3 0 0 0
## 1169 105 14 23 62 2 0 0 3 0 0 0
## 1170 47 8 10 39 2 0 0 0 0 0 0
## 1171 47 8 10 39 2 0 0 0 0 0 0
## 1172 47 8 10 39 2 0 0 0 0 0 0
## 1173 47 8 10 39 2 0 0 0 0 0 0
## 1174 28 3 8 20 0 2 2 0 0 0 0
## 1175 28 3 8 20 0 2 2 0 0 0 0
## 1176 29 8 9 18 2 0 0 0 0 0 0
## 1177 29 8 9 18 2 0 0 0 0 0 0
## 1178 25 3 5 14 4 0 0 0 0 0 0
## 1179 25 3 5 14 4 0 0 0 0 0 0
## 1180 25 3 5 14 4 0 0 0 0 0 0
## 1181 25 3 5 14 4 0 0 0 0 0 0
## 1182 17 3 5 9 2 0 0 0 0 0 0
## 1183 17 3 5 9 2 0 0 0 0 0 0
## 1184 17 3 5 9 2 0 0 0 0 0 0
## 1185 17 3 5 9 2 0 0 0 0 0 0
## 1186 13 3 5 8 2 0 0 0 0 0 0
## 1187 13 3 5 8 2 0 0 0 0 0 0
## 1188 12 2 4 5 1 0 0 0 0 0 0
## 1189 12 2 4 5 1 0 0 0 0 0 0
## 1190 12 2 4 5 1 0 0 0 0 0 0
## 1191 12 2 4 5 1 0 0 0 0 0 0
## 1192 20 5 6 14 2 0 0 0 0 0 0
## 1193 20 5 6 14 2 0 0 0 0 0 0
## 1194 20 5 6 14 2 0 0 0 0 0 0
## 1195 20 5 6 14 2 0 0 0 0 0 0
## 1196 20 5 6 14 2 0 0 0 0 0 0
## 1197 20 5 6 14 2 0 0 0 0 0 0
## 1198 20 3 3 10 2 0 0 0 0 0 0
## 1199 20 3 3 10 2 0 0 0 0 0 0
## 1200 20 3 3 10 2 0 0 0 0 0 0
## 1201 20 3 3 10 2 0 0 0 0 0 0
## 1202 30 5 12 14 3 0 0 0 0 0 0
## 1203 30 5 12 14 3 0 0 0 0 0 0
## 1204 30 5 12 14 3 0 0 0 0 0 0
## 1205 30 5 12 14 3 0 0 0 0 0 0
## 1206 18 5 6 11 2 0 0 0 0 0 0
## 1207 18 5 6 11 2 0 0 0 0 0 0
## 1208 18 5 6 11 2 0 0 0 0 0 0
## 1209 18 5 6 11 2 0 0 0 0 0 0
## 1210 18 5 6 11 2 0 0 0 0 0 0
## 1211 18 5 6 11 2 0 0 0 0 0 0
## 1212 18 5 6 11 2 0 0 0 0 0 0
## 1213 18 5 6 11 2 0 0 0 0 0 0
## 1214 75 13 15 47 2 2 0 4 0 0 0
## 1215 75 13 15 47 2 2 0 4 0 0 0
## 1216 18 5 6 11 2 0 0 0 0 0 0
## 1217 18 5 6 11 2 0 0 0 0 0 0
## 1218 18 5 6 11 2 0 0 0 0 0 0
## 1219 18 5 6 11 2 0 0 0 0 0 0
## 1220 18 5 6 11 2 0 0 0 0 0 0
## 1221 18 5 6 11 2 0 0 0 0 0 0
## 1222 18 5 6 11 2 0 0 0 0 0 0
## 1223 18 5 6 11 2 0 0 0 0 0 0
## 1224 39 6 7 15 2 0 0 0 0 0 0
## 1225 39 6 7 15 2 0 0 0 0 0 0
## 1226 13 2 2 12 2 0 0 0 0 0 0
## 1227 13 2 2 12 2 0 0 0 0 0 0
## 1228 11 3 3 6 0 0 0 0 0 0 0
## 1229 11 3 3 6 0 0 0 0 0 0 0
## 1230 17 3 4 9 2 0 0 0 0 0 0
## 1231 17 3 4 9 2 0 0 0 0 0 0
## 1232 17 3 4 9 2 0 0 0 0 0 0
## 1233 17 3 4 9 2 0 0 0 0 0 0
## 1234 18 5 6 11 2 0 0 0 0 0 0
## 1235 18 5 6 11 2 0 0 0 0 0 0
## 1236 18 5 6 11 2 0 0 0 0 0 0
## 1237 18 5 6 11 2 0 0 0 0 0 0
## 1238 114 25 26 158 2 0 0 28 0 0 0
## 1239 114 25 26 158 2 0 0 28 0 0 0
## 1240 114 25 26 158 2 0 0 28 0 0 0
## 1241 114 25 26 158 2 0 0 28 0 0 0
## 1242 41 5 8 20 2 0 0 0 0 0 0
## 1243 41 5 8 20 2 0 0 0 0 0 0
## 1244 41 5 8 20 2 0 0 0 0 0 0
## 1245 41 5 8 20 2 0 0 0 0 0 0
## 1246 27 5 6 13 2 0 0 0 0 0 0
## 1247 27 5 6 13 2 0 0 0 0 0 0
## 1248 36 9 12 19 2 0 0 0 0 0 0
## 1249 36 9 12 19 2 0 0 0 0 0 0
## 1250 36 9 12 19 2 0 0 0 0 0 0
## 1251 36 9 12 19 2 0 0 0 0 0 0
## 1252 156 19 26 94 3 3 9 0 0 0 0
## 1253 156 19 26 94 3 3 9 0 0 0 0
## 1254 30 4 5 25 5 0 0 0 0 0 0
## 1255 30 4 5 25 5 0 0 0 0 0 0
## 1256 95 12 21 47 18 9 9 1 0 0 0
## 1257 95 12 21 47 18 9 9 1 0 0 0
## 1258 95 12 21 47 18 9 9 1 0 0 0
## 1259 95 12 21 47 18 9 9 1 0 0 0
## 1260 50 9 21 27 2 0 0 0 0 1 1
## 1261 50 9 21 27 2 0 0 0 0 1 1
## 1262 199 21 46 135 2 2 2 5 0 0 0
## 1263 199 21 46 135 2 2 2 5 0 0 0
## 1264 199 21 46 135 2 2 2 5 0 0 0
## 1265 199 21 46 135 2 2 2 5 0 0 0
## 1266 199 21 46 135 2 2 2 5 0 0 0
## 1267 199 21 46 135 2 2 2 5 0 0 0
## 1268 199 21 46 135 2 2 2 5 0 0 0
## 1269 199 21 46 135 2 2 2 5 0 0 0
## 1270 199 21 46 135 2 2 2 5 0 0 0
## 1271 199 21 46 135 2 2 2 5 0 0 0
## 1272 199 21 46 135 2 2 2 5 0 0 0
## 1273 199 21 46 135 2 2 2 5 0 0 0
## 1274 30 4 12 9 0 2 0 0 0 0 0
## 1275 30 4 12 9 0 2 0 0 0 0 0
## 1276 30 4 12 9 0 2 0 0 0 0 0
## 1277 30 4 12 9 0 2 0 0 0 0 0
## 1278 30 4 12 9 0 2 0 0 0 0 0
## 1279 30 4 12 9 0 2 0 0 0 0 0
## 1280 30 4 12 9 0 2 0 0 0 0 0
## 1281 30 4 12 9 0 2 0 0 0 0 0
## 1282 30 4 12 9 0 2 0 0 0 0 0
## 1283 30 4 12 9 0 2 0 0 0 0 0
## 1284 30 4 12 9 0 2 0 0 0 0 0
## 1285 30 4 12 9 0 2 0 0 0 0 0
## 1286 30 4 12 9 0 2 0 0 0 0 0
## 1287 30 4 12 9 0 2 0 0 0 0 0
## 1288 10 1 2 7 3 1 0 0 0 0 0
## 1289 10 1 2 7 3 1 0 0 0 0 0
## 1290 10 1 2 7 3 1 0 0 0 0 0
## 1291 10 1 2 7 3 1 0 0 0 0 0
## 1292 10 1 2 7 3 1 0 0 0 0 0
## 1293 10 1 2 7 3 1 0 0 0 0 0
## 1294 10 1 2 7 3 1 0 0 0 0 0
## 1295 10 1 2 7 3 1 0 0 0 0 0
## 1296 10 1 2 7 3 1 0 0 0 0 0
## 1297 10 1 2 7 3 1 0 0 0 0 0
## 1298 10 1 2 7 3 1 0 0 0 0 0
## 1299 10 1 2 7 3 1 0 0 0 0 0
## 1300 10 1 2 7 3 1 0 0 0 0 0
## 1301 10 1 2 7 3 1 0 0 0 0 0
## 1302 6 1 2 4 1 0 0 0 0 0 0
## 1303 6 1 2 4 1 0 0 0 0 0 0
## 1304 14 2 2 12 2 0 0 0 0 0 0
## 1305 14 2 2 12 2 0 0 0 0 0 0
## 1306 14 2 2 12 2 0 0 0 0 0 0
## 1307 14 2 2 12 2 0 0 0 0 0 0
## 1308 24 4 5 16 2 0 0 0 0 0 0
## 1309 24 4 5 16 2 0 0 0 0 0 0
## 1310 24 4 5 16 2 0 0 0 0 0 0
## 1311 24 4 5 16 2 0 0 0 0 0 0
## 1312 58 10 21 48 2 0 0 0 0 0 0
## 1313 58 10 21 48 2 0 0 0 0 0 0
## 1314 58 10 21 48 2 0 0 0 0 0 0
## 1315 58 10 21 48 2 0 0 0 0 0 0
## 1316 7 1 1 7 1 0 0 0 0 0 0
## 1317 7 1 1 7 1 0 0 0 0 0 0
## 1318 7 1 1 7 1 0 0 0 0 0 0
## 1319 7 1 1 7 1 0 0 0 0 0 0
## 1320 23 4 6 19 2 0 0 0 0 0 0
## 1321 23 4 6 19 2 0 0 0 0 0 0
## 1322 23 4 6 19 2 0 0 0 0 0 0
## 1323 23 4 6 19 2 0 0 0 0 0 0
## 1324 14 3 4 13 2 0 0 0 0 0 0
## 1325 14 3 4 13 2 0 0 0 0 0 0
## 1326 14 3 4 13 2 0 0 0 0 0 0
## 1327 14 3 4 13 2 0 0 0 0 0 0
## 1328 69 9 14 63 2 2 0 6 0 0 0
## 1329 69 9 14 63 2 2 0 6 0 0 0
## 1330 50 9 21 43 2 0 0 0 0 0 0
## 1331 50 9 21 43 2 0 0 0 0 0 0
## 1332 50 9 21 43 2 0 0 0 0 0 0
## 1333 50 9 21 43 2 0 0 0 0 0 0
## 1334 35 5 6 29 2 0 0 0 0 0 0
## 1335 35 5 6 29 2 0 0 0 0 0 0
## 1336 34 5 9 22 5 0 0 1 0 0 0
## 1337 34 5 9 22 5 0 0 1 0 0 0
## 1338 34 5 9 22 5 0 0 1 0 0 0
## 1339 34 5 9 22 5 0 0 1 0 0 0
## 1340 105 14 23 62 2 0 0 3 0 0 0
## 1341 105 14 23 62 2 0 0 3 0 0 0
## 1342 105 14 23 62 2 0 0 3 0 0 0
## 1343 105 14 23 62 2 0 0 3 0 0 0
## 1344 47 8 10 39 2 0 0 0 0 0 0
## 1345 47 8 10 39 2 0 0 0 0 0 0
## 1346 47 8 10 39 2 0 0 0 0 0 0
## 1347 47 8 10 39 2 0 0 0 0 0 0
## 1348 28 3 8 20 0 2 2 0 0 0 0
## 1349 28 3 8 20 0 2 2 0 0 0 0
## 1350 29 8 9 18 2 0 0 0 0 0 0
## 1351 29 8 9 18 2 0 0 0 0 0 0
## 1352 25 3 5 14 4 0 0 0 0 0 0
## 1353 25 3 5 14 4 0 0 0 0 0 0
## 1354 25 3 5 14 4 0 0 0 0 0 0
## 1355 25 3 5 14 4 0 0 0 0 0 0
## 1356 17 3 5 9 2 0 0 0 0 0 0
## 1357 17 3 5 9 2 0 0 0 0 0 0
## 1358 17 3 5 9 2 0 0 0 0 0 0
## 1359 17 3 5 9 2 0 0 0 0 0 0
## 1360 13 3 5 8 2 0 0 0 0 0 0
## 1361 13 3 5 8 2 0 0 0 0 0 0
## 1362 12 2 4 5 1 0 0 0 0 0 0
## 1363 12 2 4 5 1 0 0 0 0 0 0
## 1364 12 2 4 5 1 0 0 0 0 0 0
## 1365 12 2 4 5 1 0 0 0 0 0 0
## 1366 20 5 6 14 2 0 0 0 0 0 0
## 1367 20 5 6 14 2 0 0 0 0 0 0
## 1368 20 5 6 14 2 0 0 0 0 0 0
## 1369 20 5 6 14 2 0 0 0 0 0 0
## 1370 20 5 6 14 2 0 0 0 0 0 0
## 1371 20 5 6 14 2 0 0 0 0 0 0
## 1372 20 3 3 10 2 0 0 0 0 0 0
## 1373 20 3 3 10 2 0 0 0 0 0 0
## 1374 20 3 3 10 2 0 0 0 0 0 0
## 1375 20 3 3 10 2 0 0 0 0 0 0
## 1376 30 5 12 14 3 0 0 0 0 0 0
## 1377 30 5 12 14 3 0 0 0 0 0 0
## 1378 30 5 12 14 3 0 0 0 0 0 0
## 1379 30 5 12 14 3 0 0 0 0 0 0
## 1380 8 1 1 5 1 0 0 0 0 0 0
## 1381 8 1 1 5 1 0 0 0 0 0 0
## 1382 18 5 6 11 2 0 0 0 0 0 0
## 1383 18 5 6 11 2 0 0 0 0 0 0
## 1384 18 5 6 11 2 0 0 0 0 0 0
## 1385 18 5 6 11 2 0 0 0 0 0 0
## 1386 18 5 6 11 2 0 0 0 0 0 0
## 1387 18 5 6 11 2 0 0 0 0 0 0
## 1388 18 5 6 11 2 0 0 0 0 0 0
## 1389 18 5 6 11 2 0 0 0 0 0 0
## 1390 75 13 15 47 2 2 0 4 0 0 0
## 1391 75 13 15 47 2 2 0 4 0 0 0
## 1392 18 5 6 11 2 0 0 0 0 0 0
## 1393 18 5 6 11 2 0 0 0 0 0 0
## 1394 18 5 6 11 2 0 0 0 0 0 0
## 1395 18 5 6 11 2 0 0 0 0 0 0
## 1396 18 5 6 11 2 0 0 0 0 0 0
## 1397 18 5 6 11 2 0 0 0 0 0 0
## 1398 18 5 6 11 2 0 0 0 0 0 0
## 1399 18 5 6 11 2 0 0 0 0 0 0
## 1400 39 6 7 15 2 0 0 0 0 0 0
## 1401 39 6 7 15 2 0 0 0 0 0 0
## 1402 13 2 2 12 2 0 0 0 0 0 0
## 1403 13 2 2 12 2 0 0 0 0 0 0
## 1404 11 3 3 6 0 0 0 0 0 0 0
## 1405 11 3 3 6 0 0 0 0 0 0 0
## 1406 17 3 4 9 2 0 0 0 0 0 0
## 1407 17 3 4 9 2 0 0 0 0 0 0
## 1408 18 5 6 11 2 0 0 0 0 0 0
## 1409 18 5 6 11 2 0 0 0 0 0 0
## 1410 18 5 6 11 2 0 0 0 0 0 0
## 1411 18 5 6 11 2 0 0 0 0 0 0
## 1412 18 5 6 11 2 0 0 0 0 0 0
## 1413 18 5 6 11 2 0 0 0 0 0 0
## 1414 68 12 13 72 2 0 0 0 0 0 0
## 1415 68 12 13 72 2 0 0 0 0 0 0
## 1416 9 2 3 4 1 0 0 0 0 0 0
## 1417 9 2 3 4 1 0 0 0 0 0 0
## 1418 9 2 3 4 1 0 0 0 0 0 0
## 1419 9 2 3 4 1 0 0 0 0 0 0
## 1420 114 25 26 158 2 0 0 28 0 0 0
## 1421 114 25 26 158 2 0 0 28 0 0 0
## 1422 114 25 26 158 2 0 0 28 0 0 0
## 1423 114 25 26 158 2 0 0 28 0 0 0
## 1424 41 5 8 20 2 0 0 0 0 0 0
## 1425 41 5 8 20 2 0 0 0 0 0 0
## 1426 41 5 8 20 2 0 0 0 0 0 0
## 1427 41 5 8 20 2 0 0 0 0 0 0
## 1428 27 5 6 13 2 0 0 0 0 0 0
## 1429 27 5 6 13 2 0 0 0 0 0 0
## 1430 36 9 12 19 2 0 0 0 0 0 0
## 1431 36 9 12 19 2 0 0 0 0 0 0
## 1432 36 9 12 19 2 0 0 0 0 0 0
## 1433 36 9 12 19 2 0 0 0 0 0 0
## 1434 156 19 26 94 3 3 9 0 0 0 0
## 1435 156 19 26 94 3 3 9 0 0 0 0
## 1436 30 4 5 25 5 0 0 0 0 0 0
## 1437 30 4 5 25 5 0 0 0 0 0 0
## 1438 95 12 21 47 18 9 9 1 0 0 0
## 1439 95 12 21 47 18 9 9 1 0 0 0
## 1440 95 12 21 47 18 9 9 1 0 0 0
## 1441 95 12 21 47 18 9 9 1 0 0 0
## 1442 50 9 21 27 2 0 0 0 0 1 1
## 1443 50 9 21 27 2 0 0 0 0 1 1
## 1444 199 21 46 135 2 2 2 5 0 0 0
## 1445 199 21 46 135 2 2 2 5 0 0 0
## 1446 199 21 46 135 2 2 2 5 0 0 0
## 1447 199 21 46 135 2 2 2 5 0 0 0
## 1448 199 21 46 135 2 2 2 5 0 0 0
## 1449 199 21 46 135 2 2 2 5 0 0 0
## 1450 199 21 46 135 2 2 2 5 0 0 0
## 1451 199 21 46 135 2 2 2 5 0 0 0
## 1452 199 21 46 135 2 2 2 5 0 0 0
## 1453 199 21 46 135 2 2 2 5 0 0 0
## 1454 199 21 46 135 2 2 2 5 0 0 0
## 1455 199 21 46 135 2 2 2 5 0 0 0
## 1456 30 4 12 9 0 2 0 0 0 0 0
## 1457 30 4 12 9 0 2 0 0 0 0 0
## 1458 30 4 12 9 0 2 0 0 0 0 0
## 1459 30 4 12 9 0 2 0 0 0 0 0
## 1460 30 4 12 9 0 2 0 0 0 0 0
## 1461 30 4 12 9 0 2 0 0 0 0 0
## 1462 30 4 12 9 0 2 0 0 0 0 0
## 1463 30 4 12 9 0 2 0 0 0 0 0
## 1464 30 4 12 9 0 2 0 0 0 0 0
## 1465 30 4 12 9 0 2 0 0 0 0 0
## 1466 30 4 12 9 0 2 0 0 0 0 0
## 1467 30 4 12 9 0 2 0 0 0 0 0
## 1468 30 4 12 9 0 2 0 0 0 0 0
## 1469 30 4 12 9 0 2 0 0 0 0 0
## 1470 10 1 2 7 3 1 0 0 0 0 0
## 1471 10 1 2 7 3 1 0 0 0 0 0
## 1472 10 1 2 7 3 1 0 0 0 0 0
## 1473 10 1 2 7 3 1 0 0 0 0 0
## 1474 10 1 2 7 3 1 0 0 0 0 0
## 1475 10 1 2 7 3 1 0 0 0 0 0
## 1476 10 1 2 7 3 1 0 0 0 0 0
## 1477 10 1 2 7 3 1 0 0 0 0 0
## 1478 10 1 2 7 3 1 0 0 0 0 0
## 1479 10 1 2 7 3 1 0 0 0 0 0
## 1480 10 1 2 7 3 1 0 0 0 0 0
## 1481 10 1 2 7 3 1 0 0 0 0 0
## 1482 10 1 2 7 3 1 0 0 0 0 0
## 1483 10 1 2 7 3 1 0 0 0 0 0
## 1484 6 1 2 4 1 0 0 0 0 0 0
## 1485 6 1 2 4 1 0 0 0 0 0 0
## 1486 14 2 2 12 2 0 0 0 0 0 0
## 1487 14 2 2 12 2 0 0 0 0 0 0
## 1488 14 2 2 12 2 0 0 0 0 0 0
## 1489 14 2 2 12 2 0 0 0 0 0 0
## 1490 24 4 5 16 2 0 0 0 0 0 0
## 1491 24 4 5 16 2 0 0 0 0 0 0
## 1492 24 4 5 16 2 0 0 0 0 0 0
## 1493 24 4 5 16 2 0 0 0 0 0 0
## 1494 58 10 21 48 2 0 0 0 0 0 0
## 1495 58 10 21 48 2 0 0 0 0 0 0
## 1496 58 10 21 48 2 0 0 0 0 0 0
## 1497 58 10 21 48 2 0 0 0 0 0 0
## 1498 7 1 1 7 1 0 0 0 0 0 0
## 1499 7 1 1 7 1 0 0 0 0 0 0
## 1500 7 1 1 7 1 0 0 0 0 0 0
## 1501 7 1 1 7 1 0 0 0 0 0 0
## 1502 23 4 6 19 2 0 0 0 0 0 0
## 1503 23 4 6 19 2 0 0 0 0 0 0
## 1504 23 4 6 19 2 0 0 0 0 0 0
## 1505 23 4 6 19 2 0 0 0 0 0 0
## 1506 14 3 4 13 2 0 0 0 0 0 0
## 1507 14 3 4 13 2 0 0 0 0 0 0
## 1508 14 3 4 13 2 0 0 0 0 0 0
## 1509 14 3 4 13 2 0 0 0 0 0 0
## 1510 69 9 14 63 2 2 0 6 0 0 0
## 1511 69 9 14 63 2 2 0 6 0 0 0
## 1512 50 9 21 43 2 0 0 0 0 0 0
## 1513 50 9 21 43 2 0 0 0 0 0 0
## 1514 50 9 21 43 2 0 0 0 0 0 0
## 1515 50 9 21 43 2 0 0 0 0 0 0
## 1516 35 5 6 29 2 0 0 0 0 0 0
## 1517 35 5 6 29 2 0 0 0 0 0 0
## 1518 34 5 9 22 5 0 0 1 0 0 0
## 1519 34 5 9 22 5 0 0 1 0 0 0
## 1520 34 5 9 22 5 0 0 1 0 0 0
## 1521 34 5 9 22 5 0 0 1 0 0 0
## 1522 105 14 23 62 2 0 0 3 0 0 0
## 1523 105 14 23 62 2 0 0 3 0 0 0
## 1524 105 14 23 62 2 0 0 3 0 0 0
## 1525 105 14 23 62 2 0 0 3 0 0 0
## 1526 47 8 10 39 2 0 0 0 0 0 0
## 1527 47 8 10 39 2 0 0 0 0 0 0
## 1528 47 8 10 39 2 0 0 0 0 0 0
## 1529 47 8 10 39 2 0 0 0 0 0 0
## 1530 28 3 8 20 0 2 2 0 0 0 0
## 1531 28 3 8 20 0 2 2 0 0 0 0
## 1532 29 8 9 18 2 0 0 0 0 0 0
## 1533 29 8 9 18 2 0 0 0 0 0 0
## 1534 25 3 5 14 4 0 0 0 0 0 0
## 1535 25 3 5 14 4 0 0 0 0 0 0
## 1536 25 3 5 14 4 0 0 0 0 0 0
## 1537 25 3 5 14 4 0 0 0 0 0 0
## 1538 17 3 5 9 2 0 0 0 0 0 0
## 1539 17 3 5 9 2 0 0 0 0 0 0
## 1540 17 3 5 9 2 0 0 0 0 0 0
## 1541 17 3 5 9 2 0 0 0 0 0 0
## 1542 13 3 5 8 2 0 0 0 0 0 0
## 1543 13 3 5 8 2 0 0 0 0 0 0
## 1544 12 2 4 5 1 0 0 0 0 0 0
## 1545 12 2 4 5 1 0 0 0 0 0 0
## 1546 12 2 4 5 1 0 0 0 0 0 0
## 1547 12 2 4 5 1 0 0 0 0 0 0
## 1548 20 5 6 14 2 0 0 0 0 0 0
## 1549 20 5 6 14 2 0 0 0 0 0 0
## 1550 20 5 6 14 2 0 0 0 0 0 0
## 1551 20 5 6 14 2 0 0 0 0 0 0
## 1552 20 5 6 14 2 0 0 0 0 0 0
## 1553 20 5 6 14 2 0 0 0 0 0 0
## 1554 20 3 3 10 2 0 0 0 0 0 0
## 1555 20 3 3 10 2 0 0 0 0 0 0
## 1556 20 3 3 10 2 0 0 0 0 0 0
## 1557 20 3 3 10 2 0 0 0 0 0 0
## 1558 30 5 12 14 3 0 0 0 0 0 0
## 1559 30 5 12 14 3 0 0 0 0 0 0
## 1560 30 5 12 14 3 0 0 0 0 0 0
## 1561 30 5 12 14 3 0 0 0 0 0 0
## 1562 8 1 1 5 1 0 0 0 0 0 0
## 1563 8 1 1 5 1 0 0 0 0 0 0
## 1564 18 5 6 11 2 0 0 0 0 0 0
## 1565 18 5 6 11 2 0 0 0 0 0 0
## 1566 18 5 6 11 2 0 0 0 0 0 0
## 1567 18 5 6 11 2 0 0 0 0 0 0
## 1568 18 5 6 11 2 0 0 0 0 0 0
## 1569 18 5 6 11 2 0 0 0 0 0 0
## 1570 18 5 6 11 2 0 0 0 0 0 0
## 1571 18 5 6 11 2 0 0 0 0 0 0
## 1572 75 13 15 47 2 2 0 4 0 0 0
## 1573 75 13 15 47 2 2 0 4 0 0 0
## 1574 18 5 6 11 2 0 0 0 0 0 0
## 1575 18 5 6 11 2 0 0 0 0 0 0
## 1576 18 5 6 11 2 0 0 0 0 0 0
## 1577 18 5 6 11 2 0 0 0 0 0 0
## 1578 18 5 6 11 2 0 0 0 0 0 0
## 1579 18 5 6 11 2 0 0 0 0 0 0
## 1580 18 5 6 11 2 0 0 0 0 0 0
## 1581 18 5 6 11 2 0 0 0 0 0 0
## 1582 39 6 7 15 2 0 0 0 0 0 0
## 1583 39 6 7 15 2 0 0 0 0 0 0
## 1584 13 2 2 12 2 0 0 0 0 0 0
## 1585 13 2 2 12 2 0 0 0 0 0 0
## 1586 11 3 3 6 0 0 0 0 0 0 0
## 1587 11 3 3 6 0 0 0 0 0 0 0
## 1588 17 3 4 9 2 0 0 0 0 0 0
## 1589 17 3 4 9 2 0 0 0 0 0 0
## 1590 18 5 6 11 2 0 0 0 0 0 0
## 1591 18 5 6 11 2 0 0 0 0 0 0
## 1592 18 5 6 11 2 0 0 0 0 0 0
## 1593 18 5 6 11 2 0 0 0 0 0 0
## 1594 18 5 6 11 2 0 0 0 0 0 0
## 1595 18 5 6 11 2 0 0 0 0 0 0
## 1596 68 12 13 72 2 0 0 0 0 0 0
## 1597 68 12 13 72 2 0 0 0 0 0 0
## 1598 68 12 13 72 2 0 0 0 0 0 0
## 1599 68 12 13 72 2 0 0 0 0 0 0
## 1600 9 2 3 4 1 0 0 0 0 0 0
## 1601 9 2 3 4 1 0 0 0 0 0 0
## 1602 9 2 3 4 1 0 0 0 0 0 0
## 1603 9 2 3 4 1 0 0 0 0 0 0
## 1604 114 25 26 158 2 0 0 28 0 0 0
## 1605 114 25 26 158 2 0 0 28 0 0 0
## 1606 114 25 26 158 2 0 0 28 0 0 0
## 1607 114 25 26 158 2 0 0 28 0 0 0
## 1608 41 5 8 20 2 0 0 0 0 0 0
## 1609 41 5 8 20 2 0 0 0 0 0 0
## 1610 41 5 8 20 2 0 0 0 0 0 0
## 1611 41 5 8 20 2 0 0 0 0 0 0
## 1612 27 5 6 13 2 0 0 0 0 0 0
## 1613 27 5 6 13 2 0 0 0 0 0 0
## 1614 36 9 12 19 2 0 0 0 0 0 0
## 1615 36 9 12 19 2 0 0 0 0 0 0
## 1616 36 9 12 19 2 0 0 0 0 0 0
## 1617 36 9 12 19 2 0 0 0 0 0 0
## 1618 156 19 26 94 3 3 9 0 0 0 0
## 1619 156 19 26 94 3 3 9 0 0 0 0
## 1620 30 4 5 25 5 0 0 0 0 0 0
## 1621 30 4 5 25 5 0 0 0 0 0 0
## 1622 95 12 21 47 18 9 9 1 0 0 0
## 1623 95 12 21 47 18 9 9 1 0 0 0
## 1624 95 12 21 47 18 9 9 1 0 0 0
## 1625 95 12 21 47 18 9 9 1 0 0 0
## 1626 50 9 21 27 2 0 0 0 0 1 1
## 1627 50 9 21 27 2 0 0 0 0 1 1
## 1628 199 21 46 135 2 2 2 5 0 0 0
## 1629 199 21 46 135 2 2 2 5 0 0 0
## 1630 199 21 46 135 2 2 2 5 0 0 0
## 1631 199 21 46 135 2 2 2 5 0 0 0
## 1632 199 21 46 135 2 2 2 5 0 0 0
## 1633 199 21 46 135 2 2 2 5 0 0 0
## 1634 199 21 46 135 2 2 2 5 0 0 0
## 1635 199 21 46 135 2 2 2 5 0 0 0
## 1636 199 21 46 135 2 2 2 5 0 0 0
## 1637 199 21 46 135 2 2 2 5 0 0 0
## 1638 199 21 46 135 2 2 2 5 0 0 0
## 1639 199 21 46 135 2 2 2 5 0 0 0
## 1640 30 4 12 9 0 2 0 0 0 0 0
## 1641 30 4 12 9 0 2 0 0 0 0 0
## 1642 30 4 12 9 0 2 0 0 0 0 0
## 1643 30 4 12 9 0 2 0 0 0 0 0
## 1644 30 4 12 9 0 2 0 0 0 0 0
## 1645 30 4 12 9 0 2 0 0 0 0 0
## 1646 30 4 12 9 0 2 0 0 0 0 0
## 1647 30 4 12 9 0 2 0 0 0 0 0
## 1648 30 4 12 9 0 2 0 0 0 0 0
## 1649 30 4 12 9 0 2 0 0 0 0 0
## 1650 30 4 12 9 0 2 0 0 0 0 0
## 1651 30 4 12 9 0 2 0 0 0 0 0
## 1652 30 4 12 9 0 2 0 0 0 0 0
## 1653 30 4 12 9 0 2 0 0 0 0 0
## 1654 10 1 2 7 3 1 0 0 0 0 0
## 1655 10 1 2 7 3 1 0 0 0 0 0
## 1656 10 1 2 7 3 1 0 0 0 0 0
## 1657 10 1 2 7 3 1 0 0 0 0 0
## 1658 10 1 2 7 3 1 0 0 0 0 0
## 1659 10 1 2 7 3 1 0 0 0 0 0
## 1660 10 1 2 7 3 1 0 0 0 0 0
## 1661 10 1 2 7 3 1 0 0 0 0 0
## 1662 10 1 2 7 3 1 0 0 0 0 0
## 1663 10 1 2 7 3 1 0 0 0 0 0
## 1664 10 1 2 7 3 1 0 0 0 0 0
## 1665 10 1 2 7 3 1 0 0 0 0 0
## 1666 10 1 2 7 3 1 0 0 0 0 0
## 1667 10 1 2 7 3 1 0 0 0 0 0
## 1668 6 1 2 4 1 0 0 0 0 0 0
## 1669 6 1 2 4 1 0 0 0 0 0 0
## 1670 14 2 2 12 2 0 0 0 0 0 0
## 1671 14 2 2 12 2 0 0 0 0 0 0
## 1672 14 2 2 12 2 0 0 0 0 0 0
## 1673 14 2 2 12 2 0 0 0 0 0 0
## 1674 24 4 5 16 2 0 0 0 0 0 0
## 1675 24 4 5 16 2 0 0 0 0 0 0
## 1676 24 4 5 16 2 0 0 0 0 0 0
## 1677 24 4 5 16 2 0 0 0 0 0 0
## 1678 58 10 21 48 2 0 0 0 0 0 0
## 1679 58 10 21 48 2 0 0 0 0 0 0
## 1680 58 10 21 48 2 0 0 0 0 0 0
## 1681 58 10 21 48 2 0 0 0 0 0 0
## 1682 7 1 1 7 1 0 0 0 0 0 0
## 1683 7 1 1 7 1 0 0 0 0 0 0
## 1684 7 1 1 7 1 0 0 0 0 0 0
## 1685 7 1 1 7 1 0 0 0 0 0 0
## 1686 23 4 6 19 2 0 0 0 0 0 0
## 1687 23 4 6 19 2 0 0 0 0 0 0
## 1688 23 4 6 19 2 0 0 0 0 0 0
## 1689 23 4 6 19 2 0 0 0 0 0 0
## 1690 14 3 4 13 2 0 0 0 0 0 0
## 1691 14 3 4 13 2 0 0 0 0 0 0
## 1692 14 3 4 13 2 0 0 0 0 0 0
## 1693 14 3 4 13 2 0 0 0 0 0 0
## 1694 69 9 14 63 2 2 0 6 0 0 0
## 1695 69 9 14 63 2 2 0 6 0 0 0
## 1696 50 9 21 43 2 0 0 0 0 0 0
## 1697 50 9 21 43 2 0 0 0 0 0 0
## 1698 50 9 21 43 2 0 0 0 0 0 0
## 1699 50 9 21 43 2 0 0 0 0 0 0
## 1700 35 5 6 29 2 0 0 0 0 0 0
## 1701 35 5 6 29 2 0 0 0 0 0 0
## 1702 34 5 9 22 5 0 0 1 0 0 0
## 1703 34 5 9 22 5 0 0 1 0 0 0
## 1704 34 5 9 22 5 0 0 1 0 0 0
## 1705 34 5 9 22 5 0 0 1 0 0 0
## 1706 105 14 23 62 2 0 0 3 0 0 0
## 1707 105 14 23 62 2 0 0 3 0 0 0
## 1708 105 14 23 62 2 0 0 3 0 0 0
## 1709 105 14 23 62 2 0 0 3 0 0 0
## 1710 47 8 10 39 2 0 0 0 0 0 0
## 1711 47 8 10 39 2 0 0 0 0 0 0
## 1712 47 8 10 39 2 0 0 0 0 0 0
## 1713 47 8 10 39 2 0 0 0 0 0 0
## 1714 28 3 8 20 0 2 2 0 0 0 0
## 1715 28 3 8 20 0 2 2 0 0 0 0
## 1716 29 8 9 18 2 0 0 0 0 0 0
## 1717 29 8 9 18 2 0 0 0 0 0 0
## 1718 25 3 5 14 4 0 0 0 0 0 0
## 1719 25 3 5 14 4 0 0 0 0 0 0
## 1720 25 3 5 14 4 0 0 0 0 0 0
## 1721 25 3 5 14 4 0 0 0 0 0 0
## 1722 17 3 5 9 2 0 0 0 0 0 0
## 1723 17 3 5 9 2 0 0 0 0 0 0
## 1724 17 3 5 9 2 0 0 0 0 0 0
## 1725 17 3 5 9 2 0 0 0 0 0 0
## 1726 13 3 5 8 2 0 0 0 0 0 0
## 1727 13 3 5 8 2 0 0 0 0 0 0
## 1728 12 2 4 5 1 0 0 0 0 0 0
## 1729 12 2 4 5 1 0 0 0 0 0 0
## 1730 12 2 4 5 1 0 0 0 0 0 0
## 1731 12 2 4 5 1 0 0 0 0 0 0
## 1732 20 5 6 14 2 0 0 0 0 0 0
## 1733 20 5 6 14 2 0 0 0 0 0 0
## 1734 20 5 6 14 2 0 0 0 0 0 0
## 1735 20 5 6 14 2 0 0 0 0 0 0
## 1736 20 5 6 14 2 0 0 0 0 0 0
## 1737 20 5 6 14 2 0 0 0 0 0 0
## 1738 20 3 3 10 2 0 0 0 0 0 0
## 1739 20 3 3 10 2 0 0 0 0 0 0
## 1740 20 3 3 10 2 0 0 0 0 0 0
## 1741 20 3 3 10 2 0 0 0 0 0 0
## 1742 30 5 12 14 3 0 0 0 0 0 0
## 1743 30 5 12 14 3 0 0 0 0 0 0
## 1744 30 5 12 14 3 0 0 0 0 0 0
## 1745 30 5 12 14 3 0 0 0 0 0 0
## 1746 8 1 1 5 1 0 0 0 0 0 0
## 1747 8 1 1 5 1 0 0 0 0 0 0
## 1748 18 5 6 11 2 0 0 0 0 0 0
## 1749 18 5 6 11 2 0 0 0 0 0 0
## 1750 18 5 6 11 2 0 0 0 0 0 0
## 1751 18 5 6 11 2 0 0 0 0 0 0
## 1752 18 5 6 11 2 0 0 0 0 0 0
## 1753 18 5 6 11 2 0 0 0 0 0 0
## 1754 18 5 6 11 2 0 0 0 0 0 0
## 1755 18 5 6 11 2 0 0 0 0 0 0
## 1756 75 13 15 47 2 2 0 4 0 0 0
## 1757 75 13 15 47 2 2 0 4 0 0 0
## 1758 18 5 6 11 2 0 0 0 0 0 0
## 1759 18 5 6 11 2 0 0 0 0 0 0
## 1760 18 5 6 11 2 0 0 0 0 0 0
## 1761 18 5 6 11 2 0 0 0 0 0 0
## 1762 18 5 6 11 2 0 0 0 0 0 0
## 1763 18 5 6 11 2 0 0 0 0 0 0
## 1764 18 5 6 11 2 0 0 0 0 0 0
## 1765 18 5 6 11 2 0 0 0 0 0 0
## 1766 39 6 7 15 2 0 0 0 0 0 0
## 1767 39 6 7 15 2 0 0 0 0 0 0
## 1768 13 2 2 12 2 0 0 0 0 0 0
## 1769 13 2 2 12 2 0 0 0 0 0 0
## 1770 11 3 3 6 0 0 0 0 0 0 0
## 1771 11 3 3 6 0 0 0 0 0 0 0
## 1772 17 3 4 9 2 0 0 0 0 0 0
## 1773 17 3 4 9 2 0 0 0 0 0 0
## 1774 18 5 6 11 2 0 0 0 0 0 0
## 1775 18 5 6 11 2 0 0 0 0 0 0
## 1776 18 5 6 11 2 0 0 0 0 0 0
## 1777 18 5 6 11 2 0 0 0 0 0 0
## 1778 18 5 6 11 2 0 0 0 0 0 0
## 1779 18 5 6 11 2 0 0 0 0 0 0
## 1780 68 12 13 72 2 0 0 0 0 0 0
## 1781 68 12 13 72 2 0 0 0 0 0 0
## 1782 68 12 13 72 2 0 0 0 0 0 0
## 1783 68 12 13 72 2 0 0 0 0 0 0
## 1784 9 2 3 4 1 0 0 0 0 0 0
## 1785 9 2 3 4 1 0 0 0 0 0 0
## 1786 9 2 3 4 1 0 0 0 0 0 0
## 1787 9 2 3 4 1 0 0 0 0 0 0
## 1788 114 25 26 158 2 0 0 28 0 0 0
## 1789 114 25 26 158 2 0 0 28 0 0 0
## 1790 114 25 26 158 2 0 0 28 0 0 0
## 1791 114 25 26 158 2 0 0 28 0 0 0
## 1792 41 5 8 20 2 0 0 0 0 0 0
## 1793 41 5 8 20 2 0 0 0 0 0 0
## 1794 41 5 8 20 2 0 0 0 0 0 0
## 1795 41 5 8 20 2 0 0 0 0 0 0
## 1796 27 5 6 13 2 0 0 0 0 0 0
## 1797 27 5 6 13 2 0 0 0 0 0 0
## 1798 36 9 12 19 2 0 0 0 0 0 0
## 1799 36 9 12 19 2 0 0 0 0 0 0
## 1800 36 9 12 19 2 0 0 0 0 0 0
## 1801 36 9 12 19 2 0 0 0 0 0 0
## 1802 156 19 26 94 3 3 9 0 0 0 0
## 1803 156 19 26 94 3 3 9 0 0 0 0
## 1804 30 4 5 25 5 0 0 0 0 0 0
## 1805 30 4 5 25 5 0 0 0 0 0 0
## 1806 95 12 21 47 18 9 9 1 0 0 0
## 1807 95 12 21 47 18 9 9 1 0 0 0
## 1808 95 12 21 47 18 9 9 1 0 0 0
## 1809 95 12 21 47 18 9 9 1 0 0 0
## 1810 199 21 46 135 2 2 2 5 0 0 0
## 1811 199 21 46 135 2 2 2 5 0 0 0
## 1812 199 21 46 135 2 2 2 5 0 0 0
## 1813 199 21 46 135 2 2 2 5 0 0 0
## 1814 199 21 46 135 2 2 2 5 0 0 0
## 1815 199 21 46 135 2 2 2 5 0 0 0
## 1816 199 21 46 135 2 2 2 5 0 0 0
## 1817 199 21 46 135 2 2 2 5 0 0 0
## 1818 199 21 46 135 2 2 2 5 0 0 0
## 1819 199 21 46 135 2 2 2 5 0 0 0
## 1820 199 21 46 135 2 2 2 5 0 0 0
## 1821 199 21 46 135 2 2 2 5 0 0 0
## 1822 61 6 17 18 1 1 0 0 0 2 1
## 1823 61 6 17 18 1 1 0 0 0 2 1
## 1824 61 6 17 18 1 1 0 0 0 2 1
## 1825 62 6 17 18 1 1 0 0 0 2 1
## 1826 67 6 17 18 1 1 0 0 0 2 1
## 1827 87 6 17 18 1 1 0 0 0 2 1
## 1828 101 6 17 18 1 1 0 0 0 2 1
## 1829 101 6 17 18 1 1 0 0 0 2 1
## 1830 101 6 17 18 1 1 0 0 0 2 1
## 1831 117 6 17 22 1 1 0 0 0 2 1
## 1832 124 6 17 22 1 1 0 0 0 2 1
## 1833 126 6 17 22 1 1 0 0 0 2 1
## 1834 61 6 17 18 1 1 0 0 0 2 1
## 1835 61 6 17 18 1 1 0 0 0 2 1
## 1836 61 6 17 18 1 1 0 0 0 2 1
## 1837 62 6 17 18 1 1 0 0 0 2 1
## 1838 67 6 17 18 1 1 0 0 0 2 1
## 1839 87 6 17 18 1 1 0 0 0 2 1
## 1840 101 6 17 18 1 1 0 0 0 2 1
## 1841 101 6 17 18 1 1 0 0 0 2 1
## 1842 101 6 17 18 1 1 0 0 0 2 1
## 1843 117 6 17 22 1 1 0 0 0 2 1
## 1844 124 6 17 22 1 1 0 0 0 2 1
## 1845 126 6 17 22 1 1 0 0 0 2 1
## 1846 30 4 12 9 0 2 0 0 0 0 0
## 1847 30 4 12 9 0 2 0 0 0 0 0
## 1848 30 4 12 9 0 2 0 0 0 0 0
## 1849 30 4 12 9 0 2 0 0 0 0 0
## 1850 30 4 12 9 0 2 0 0 0 0 0
## 1851 30 4 12 9 0 2 0 0 0 0 0
## 1852 30 4 12 9 0 2 0 0 0 0 0
## 1853 30 4 12 9 0 2 0 0 0 0 0
## 1854 30 4 12 9 0 2 0 0 0 0 0
## 1855 30 4 12 9 0 2 0 0 0 0 0
## 1856 30 4 12 9 0 2 0 0 0 0 0
## 1857 30 4 12 9 0 2 0 0 0 0 0
## 1858 30 4 12 9 0 2 0 0 0 0 0
## 1859 30 4 12 9 0 2 0 0 0 0 0
## 1860 10 1 2 7 3 1 0 0 0 0 0
## 1861 10 1 2 7 3 1 0 0 0 0 0
## 1862 10 1 2 7 3 1 0 0 0 0 0
## 1863 10 1 2 7 3 1 0 0 0 0 0
## 1864 10 1 2 7 3 1 0 0 0 0 0
## 1865 10 1 2 7 3 1 0 0 0 0 0
## 1866 10 1 2 7 3 1 0 0 0 0 0
## 1867 10 1 2 7 3 1 0 0 0 0 0
## 1868 10 1 2 7 3 1 0 0 0 0 0
## 1869 10 1 2 7 3 1 0 0 0 0 0
## 1870 10 1 2 7 3 1 0 0 0 0 0
## 1871 10 1 2 7 3 1 0 0 0 0 0
## 1872 10 1 2 7 3 1 0 0 0 0 0
## 1873 10 1 2 7 3 1 0 0 0 0 0
## 1874 6 1 2 4 1 0 0 0 0 0 0
## 1875 6 1 2 4 1 0 0 0 0 0 0
## 1876 6 1 2 4 1 0 0 0 0 0 0
## 1877 6 1 2 4 1 0 0 0 0 0 0
## 1878 6 1 2 4 1 0 0 0 0 0 0
## 1879 6 1 2 4 1 0 0 0 0 0 0
## 1880 6 1 2 4 1 0 0 0 0 0 0
## 1881 6 1 2 4 1 0 0 0 0 0 0
## 1882 6 1 2 4 1 0 0 0 0 0 0
## 1883 6 1 2 4 1 0 0 0 0 0 0
## 1884 6 1 2 4 1 0 0 0 0 0 0
## 1885 6 1 2 4 1 0 0 0 0 0 0
## 1886 30 5 6 21 2 0 0 0 0 0 0
## 1887 30 5 6 21 2 0 0 0 0 0 0
## 1888 30 5 6 21 2 0 0 0 0 0 0
## 1889 30 5 6 21 2 0 0 0 0 0 0
## 1890 30 5 6 21 2 0 0 0 0 0 0
## 1891 30 5 6 21 2 0 0 0 0 0 0
## 1892 30 5 6 21 2 0 0 0 0 0 0
## 1893 30 5 6 21 2 0 0 0 0 0 0
## 1894 30 5 6 21 2 0 0 0 0 0 0
## 1895 30 5 6 21 2 0 0 0 0 0 0
## 1896 30 5 6 21 2 0 0 0 0 0 0
## 1897 30 5 6 21 2 0 0 0 0 0 0
## 1898 30 5 6 21 2 0 0 0 0 0 0
## 1899 30 5 6 21 2 0 0 0 0 0 0
## 1900 30 5 6 21 2 0 0 0 0 0 0
## 1901 30 5 6 21 2 0 0 0 0 0 0
## 1902 30 5 6 21 2 0 0 0 0 0 0
## 1903 30 5 6 21 2 0 0 0 0 0 0
## 1904 30 5 6 21 2 0 0 0 0 0 0
## 1905 30 5 6 21 2 0 0 0 0 0 0
## 1906 30 5 6 21 2 0 0 0 0 0 0
## 1907 30 5 6 21 2 0 0 0 0 0 0
## 1908 30 5 6 21 2 0 0 0 0 0 0
## 1909 30 5 6 21 2 0 0 0 0 0 0
## 1910 64 11 23 53 2 0 0 0 0 0 0
## 1911 64 11 23 53 2 0 0 0 0 0 0
## 1912 64 11 23 53 2 0 0 0 0 0 0
## 1913 64 11 23 53 2 0 0 0 0 0 0
## 1914 64 11 23 53 2 0 0 0 0 0 0
## 1915 64 11 23 53 2 0 0 0 0 0 0
## 1916 64 11 23 53 2 0 0 0 0 0 0
## 1917 64 11 23 53 2 0 0 0 0 0 0
## 1918 64 11 23 53 2 0 0 0 0 0 0
## 1919 64 11 23 53 2 0 0 0 0 0 0
## 1920 64 11 23 53 2 0 0 0 0 0 0
## 1921 64 11 23 53 2 0 0 0 0 0 0
## 1922 64 11 23 53 2 0 0 0 0 0 0
## 1923 64 11 23 53 2 0 0 0 0 0 0
## 1924 64 11 23 53 2 0 0 0 0 0 0
## 1925 64 11 23 53 2 0 0 0 0 0 0
## 1926 64 11 23 53 2 0 0 0 0 0 0
## 1927 64 11 23 53 2 0 0 0 0 0 0
## 1928 64 11 23 53 2 0 0 0 0 0 0
## 1929 64 11 23 53 2 0 0 0 0 0 0
## 1930 64 11 23 53 2 0 0 0 0 0 0
## 1931 64 11 23 53 2 0 0 0 0 0 0
## 1932 64 11 23 53 2 0 0 0 0 0 0
## 1933 64 11 23 53 2 0 0 0 0 0 0
## 1934 7 1 1 7 1 0 0 0 0 0 0
## 1935 7 1 1 7 1 0 0 0 0 0 0
## 1936 7 1 1 7 1 0 0 0 0 0 0
## 1937 7 1 1 7 1 0 0 0 0 0 0
## 1938 7 1 1 7 1 0 0 0 0 0 0
## 1939 7 1 1 7 1 0 0 0 0 0 0
## 1940 7 1 1 7 1 0 0 0 0 0 0
## 1941 7 1 1 7 1 0 0 0 0 0 0
## 1942 7 1 1 7 1 0 0 0 0 0 0
## 1943 7 1 1 7 1 0 0 0 0 0 0
## 1944 7 1 1 7 1 0 0 0 0 0 0
## 1945 7 1 1 7 1 0 0 0 0 0 0
## 1946 7 1 1 7 1 0 0 0 0 0 0
## 1947 7 1 1 7 1 0 0 0 0 0 0
## 1948 7 1 1 7 1 0 0 0 0 0 0
## 1949 7 1 1 7 1 0 0 0 0 0 0
## 1950 7 1 1 7 1 0 0 0 0 0 0
## 1951 7 1 1 7 1 0 0 0 0 0 0
## 1952 7 1 1 7 1 0 0 0 0 0 0
## 1953 7 1 1 7 1 0 0 0 0 0 0
## 1954 7 1 1 7 1 0 0 0 0 0 0
## 1955 7 1 1 7 1 0 0 0 0 0 0
## 1956 7 1 1 7 1 0 0 0 0 0 0
## 1957 7 1 1 7 1 0 0 0 0 0 0
## 1958 29 5 7 25 2 0 0 0 0 0 0
## 1959 29 5 7 25 2 0 0 0 0 0 0
## 1960 29 5 7 25 2 0 0 0 0 0 0
## 1961 29 5 7 25 2 0 0 0 0 0 0
## 1962 29 5 7 25 2 0 0 0 0 0 0
## 1963 29 5 7 25 2 0 0 0 0 0 0
## 1964 29 5 7 25 2 0 0 0 0 0 0
## 1965 29 5 7 25 2 0 0 0 0 0 0
## 1966 29 5 7 25 2 0 0 0 0 0 0
## 1967 29 5 7 25 2 0 0 0 0 0 0
## 1968 29 5 7 25 2 0 0 0 0 0 0
## 1969 29 5 7 25 2 0 0 0 0 0 0
## 1970 29 5 7 25 2 0 0 0 0 0 0
## 1971 29 5 7 25 2 0 0 0 0 0 0
## 1972 29 5 7 25 2 0 0 0 0 0 0
## 1973 29 5 7 25 2 0 0 0 0 0 0
## 1974 29 5 7 25 2 0 0 0 0 0 0
## 1975 29 5 7 25 2 0 0 0 0 0 0
## 1976 29 5 7 25 2 0 0 0 0 0 0
## 1977 29 5 7 25 2 0 0 0 0 0 0
## 1978 29 5 7 25 2 0 0 0 0 0 0
## 1979 29 5 7 25 2 0 0 0 0 0 0
## 1980 29 5 7 25 2 0 0 0 0 0 0
## 1981 29 5 7 25 2 0 0 0 0 0 0
## 1982 14 3 4 13 2 0 0 0 0 0 0
## 1983 14 3 4 13 2 0 0 0 0 0 0
## 1984 14 3 4 15 2 0 0 0 2 0 0
## 1985 14 3 4 15 2 0 0 0 2 0 0
## 1986 14 3 4 15 2 0 0 0 2 0 0
## 1987 14 3 4 15 2 0 0 0 2 0 0
## 1988 14 3 4 15 2 0 0 0 2 0 0
## 1989 14 3 4 15 2 0 0 0 2 0 0
## 1990 14 3 4 15 2 0 0 0 2 0 0
## 1991 14 3 4 15 2 0 0 0 2 0 0
## 1992 14 3 4 15 2 0 0 0 2 0 0
## 1993 14 3 4 15 2 0 0 0 2 0 0
## 1994 14 3 4 13 2 0 0 0 0 0 0
## 1995 14 3 4 13 2 0 0 0 0 0 0
## 1996 14 3 4 15 2 0 0 0 2 0 0
## 1997 14 3 4 15 2 0 0 0 2 0 0
## 1998 14 3 4 15 2 0 0 0 2 0 0
## 1999 14 3 4 15 2 0 0 0 2 0 0
## 2000 14 3 4 15 2 0 0 0 2 0 0
## 2001 14 3 4 15 2 0 0 0 2 0 0
## 2002 14 3 4 15 2 0 0 0 2 0 0
## 2003 14 3 4 15 2 0 0 0 2 0 0
## 2004 14 3 4 15 2 0 0 0 2 0 0
## 2005 14 3 4 15 2 0 0 0 2 0 0
## 2006 69 9 14 63 2 2 0 6 0 0 0
## 2007 69 9 14 63 2 2 0 6 0 0 0
## 2008 69 9 14 63 2 2 0 6 0 0 0
## 2009 69 9 14 63 2 2 0 6 0 0 0
## 2010 69 9 14 63 2 2 0 6 0 0 0
## 2011 69 9 14 63 2 2 0 6 0 0 0
## 2012 69 9 14 63 2 2 0 6 0 0 0
## 2013 69 9 14 63 2 2 0 6 0 0 0
## 2014 69 9 14 63 2 2 0 6 0 0 0
## 2015 69 9 14 63 2 2 0 6 0 0 0
## 2016 69 9 14 63 2 2 0 6 0 0 0
## 2017 69 9 14 63 2 2 0 6 0 0 0
## 2018 56 10 23 48 2 0 0 0 0 0 0
## 2019 56 10 23 48 2 0 0 0 0 0 0
## 2020 56 10 23 48 2 0 0 0 0 0 0
## 2021 56 10 23 48 2 0 0 0 0 0 0
## 2022 56 10 23 48 2 0 0 0 0 0 0
## 2023 56 10 23 48 2 0 0 0 0 0 0
## 2024 56 10 23 48 2 0 0 0 0 0 0
## 2025 56 10 23 48 2 0 0 0 0 0 0
## 2026 56 10 23 48 2 0 0 0 0 0 0
## 2027 56 10 23 48 2 0 0 0 0 0 0
## 2028 56 10 23 48 2 0 0 0 0 0 0
## 2029 56 10 23 48 2 0 0 0 0 0 0
## 2030 56 10 23 48 2 0 0 0 0 0 0
## 2031 56 10 23 48 2 0 0 0 0 0 0
## 2032 56 10 23 48 2 0 0 0 0 0 0
## 2033 56 10 23 48 2 0 0 0 0 0 0
## 2034 56 10 23 48 2 0 0 0 0 0 0
## 2035 56 10 23 48 2 0 0 0 0 0 0
## 2036 56 10 23 48 2 0 0 0 0 0 0
## 2037 56 10 23 48 2 0 0 0 0 0 0
## 2038 56 10 23 48 2 0 0 0 0 0 0
## 2039 56 10 23 48 2 0 0 0 0 0 0
## 2040 56 10 23 48 2 0 0 0 0 0 0
## 2041 56 10 23 48 2 0 0 0 0 0 0
## 2042 123 18 19 79 5 0 0 4 0 0 0
## 2043 123 18 19 79 5 0 0 4 0 0 0
## 2044 123 18 19 79 5 0 0 4 0 0 0
## 2045 123 18 19 79 5 0 0 4 0 0 0
## 2046 123 18 19 79 5 0 0 4 0 0 0
## 2047 123 18 19 79 5 0 0 4 0 0 0
## 2048 123 18 19 79 5 0 0 4 0 0 0
## 2049 123 18 19 79 5 0 0 4 0 0 0
## 2050 123 18 19 79 5 0 0 4 0 0 0
## 2051 123 18 19 79 5 0 0 4 0 0 0
## 2052 123 18 19 79 5 0 0 4 0 0 0
## 2053 123 18 19 79 5 0 0 4 0 0 0
## 2054 123 18 19 79 5 0 0 4 0 0 0
## 2055 123 18 19 79 5 0 0 4 0 0 0
## 2056 123 18 19 79 5 0 0 4 0 0 0
## 2057 123 18 19 79 5 0 0 4 0 0 0
## 2058 123 18 19 79 5 0 0 4 0 0 0
## 2059 123 18 19 79 5 0 0 4 0 0 0
## 2060 123 18 19 79 5 0 0 4 0 0 0
## 2061 123 18 19 79 5 0 0 4 0 0 0
## 2062 123 18 19 79 5 0 0 4 0 0 0
## 2063 123 18 19 79 5 0 0 4 0 0 0
## 2064 123 18 19 79 5 0 0 4 0 0 0
## 2065 123 18 19 79 5 0 0 4 0 0 0
## 2066 36 6 7 28 2 0 0 0 0 0 0
## 2067 36 6 7 28 2 0 0 0 0 0 0
## 2068 36 6 7 28 2 0 0 0 0 0 0
## 2069 36 6 7 28 2 0 0 0 0 0 0
## 2070 36 6 7 28 2 0 0 0 0 0 0
## 2071 36 6 7 28 2 0 0 0 0 0 0
## 2072 36 6 7 28 2 0 0 0 0 0 0
## 2073 36 6 7 28 2 0 0 0 0 0 0
## 2074 36 6 7 28 2 0 0 0 0 0 0
## 2075 36 6 7 28 2 0 0 0 0 0 0
## 2076 36 6 7 28 2 0 0 0 0 0 0
## 2077 36 6 7 28 2 0 0 0 0 0 0
## 2078 44 7 11 26 5 0 2 1 0 0 0
## 2079 44 7 11 26 5 0 2 1 0 0 0
## 2080 44 7 11 26 5 0 2 1 0 0 0
## 2081 44 7 11 26 5 0 2 1 0 0 0
## 2082 44 7 11 26 5 0 2 1 0 0 0
## 2083 44 7 11 26 5 0 2 1 0 0 0
## 2084 44 7 11 26 5 0 2 1 0 0 0
## 2085 44 7 11 26 5 0 2 1 0 0 0
## 2086 44 7 11 26 5 0 2 1 0 0 0
## 2087 44 7 11 26 5 0 2 1 0 0 0
## 2088 44 7 11 26 5 0 2 1 0 0 0
## 2089 44 7 11 26 5 0 2 1 0 0 0
## 2090 105 14 23 62 2 0 0 3 0 0 0
## 2091 105 14 23 62 2 0 0 3 0 0 0
## 2092 105 14 23 62 2 0 0 3 0 0 0
## 2093 105 14 23 62 2 0 0 3 0 0 0
## 2094 105 14 23 62 2 0 0 3 0 0 0
## 2095 105 14 23 62 2 0 0 3 0 0 0
## 2096 105 14 23 62 2 0 0 3 0 0 0
## 2097 105 14 23 62 2 0 0 3 0 0 0
## 2098 105 14 23 62 2 0 0 3 0 0 0
## 2099 105 14 23 62 2 0 0 3 0 0 0
## 2100 105 14 23 62 2 0 0 3 0 0 0
## 2101 105 14 23 62 2 0 0 3 0 0 0
## 2102 105 14 23 62 2 0 0 3 0 0 0
## 2103 105 14 23 62 2 0 0 3 0 0 0
## 2104 105 14 23 62 2 0 0 3 0 0 0
## 2105 105 14 23 62 2 0 0 3 0 0 0
## 2106 105 14 23 62 2 0 0 3 0 0 0
## 2107 105 14 23 62 2 0 0 3 0 0 0
## 2108 105 14 23 62 2 0 0 3 0 0 0
## 2109 105 14 23 62 2 0 0 3 0 0 0
## 2110 105 14 23 62 2 0 0 3 0 0 0
## 2111 105 14 23 62 2 0 0 3 0 0 0
## 2112 105 14 23 62 2 0 0 3 0 0 0
## 2113 105 14 23 62 2 0 0 3 0 0 0
## 2114 192 14 38 84 2 2 0 17 0 0 0
## 2115 208 17 45 89 2 2 0 23 0 0 0
## 2116 208 17 45 89 2 2 0 23 0 0 0
## 2117 208 17 45 89 2 2 0 23 0 0 0
## 2118 208 17 45 89 2 2 0 23 0 0 0
## 2119 208 17 45 89 2 2 0 23 0 0 0
## 2120 208 17 45 89 2 2 0 23 0 0 0
## 2121 208 17 45 89 2 2 0 23 0 0 0
## 2122 208 17 45 89 2 2 0 23 0 0 0
## 2123 208 17 45 89 2 2 0 23 0 0 0
## 2124 208 17 45 89 2 2 0 23 0 0 0
## 2125 208 17 45 89 2 2 0 23 0 0 0
## 2126 53 9 11 44 2 0 0 0 0 0 0
## 2127 53 9 11 44 2 0 0 0 0 0 0
## 2128 53 9 11 44 2 0 0 0 0 0 0
## 2129 53 9 11 44 2 0 0 0 0 0 0
## 2130 53 9 11 44 2 0 0 0 0 0 0
## 2131 53 9 11 44 2 0 0 0 0 0 0
## 2132 53 9 11 44 2 0 0 0 0 0 0
## 2133 53 9 11 44 2 0 0 0 0 0 0
## 2134 53 9 11 44 2 0 0 0 0 0 0
## 2135 53 9 11 44 2 0 0 0 0 0 0
## 2136 53 9 11 44 2 0 0 0 0 0 0
## 2137 53 9 11 44 2 0 0 0 0 0 0
## 2138 53 9 11 44 2 0 0 0 0 0 0
## 2139 53 9 11 44 2 0 0 0 0 0 0
## 2140 53 9 11 44 2 0 0 0 0 0 0
## 2141 53 9 11 44 2 0 0 0 0 0 0
## 2142 53 9 11 44 2 0 0 0 0 0 0
## 2143 53 9 11 44 2 0 0 0 0 0 0
## 2144 53 9 11 44 2 0 0 0 0 0 0
## 2145 53 9 11 44 2 0 0 0 0 0 0
## 2146 53 9 11 44 2 0 0 0 0 0 0
## 2147 53 9 11 44 2 0 0 0 0 0 0
## 2148 53 9 11 44 2 0 0 0 0 0 0
## 2149 53 9 11 44 2 0 0 0 0 0 0
## 2150 28 3 8 20 0 2 2 0 0 0 0
## 2151 28 3 8 20 0 2 2 0 0 0 0
## 2152 28 3 8 20 0 2 2 0 0 0 0
## 2153 28 3 8 20 0 2 2 0 0 0 0
## 2154 28 3 8 20 0 2 2 0 0 0 0
## 2155 28 3 8 20 0 2 2 0 0 0 0
## 2156 28 3 8 20 0 2 2 0 0 0 0
## 2157 28 3 8 20 0 2 2 0 0 0 0
## 2158 28 3 8 20 0 2 2 0 0 0 0
## 2159 28 3 8 20 0 2 2 0 0 0 0
## 2160 28 3 8 20 0 2 2 0 0 0 0
## 2161 28 3 8 20 0 2 2 0 0 0 0
## 2162 43 12 13 28 2 0 0 0 0 0 0
## 2163 43 12 13 28 2 0 0 0 0 0 0
## 2164 43 12 13 28 2 0 0 0 0 0 0
## 2165 48 13 14 34 2 0 0 1 0 0 0
## 2166 48 13 14 34 2 0 0 1 0 0 0
## 2167 48 13 14 34 2 0 0 1 0 0 0
## 2168 48 13 14 34 2 0 0 1 0 0 0
## 2169 48 13 14 34 2 0 0 1 0 0 0
## 2170 48 13 14 34 2 0 0 1 0 0 0
## 2171 48 13 14 34 2 0 0 1 0 0 0
## 2172 48 13 14 34 2 0 0 1 0 0 0
## 2173 48 13 14 34 2 0 0 1 0 0 0
## 2174 25 3 5 14 4 0 0 0 0 0 0
## 2175 25 3 5 14 4 0 0 0 0 0 0
## 2176 25 3 5 14 4 0 0 0 0 0 0
## 2177 25 3 5 14 4 0 0 0 0 0 0
## 2178 25 3 5 14 4 0 0 0 0 0 0
## 2179 25 3 5 14 4 0 0 0 0 0 0
## 2180 25 3 5 15 4 0 0 1 0 0 0
## 2181 25 3 5 15 4 0 0 1 0 0 0
## 2182 25 3 5 15 4 0 0 1 0 0 0
## 2183 25 3 5 15 4 0 0 1 0 0 0
## 2184 25 3 5 15 4 0 0 1 0 0 0
## 2185 25 3 5 15 4 0 0 1 0 0 0
## 2186 25 3 5 14 4 0 0 0 0 0 0
## 2187 25 3 5 14 4 0 0 0 0 0 0
## 2188 25 3 5 14 4 0 0 0 0 0 0
## 2189 25 3 5 14 4 0 0 0 0 0 0
## 2190 25 3 5 14 4 0 0 0 0 0 0
## 2191 25 3 5 14 4 0 0 0 0 0 0
## 2192 25 3 5 15 4 0 0 1 0 0 0
## 2193 25 3 5 15 4 0 0 1 0 0 0
## 2194 25 3 5 15 4 0 0 1 0 0 0
## 2195 25 3 5 15 4 0 0 1 0 0 0
## 2196 25 3 5 15 4 0 0 1 0 0 0
## 2197 25 3 5 15 4 0 0 1 0 0 0
## 2198 17 3 5 9 2 0 0 0 0 0 0
## 2199 17 3 5 9 2 0 0 0 0 0 0
## 2200 17 3 5 9 2 0 0 0 0 0 0
## 2201 17 3 5 9 2 0 0 0 0 0 0
## 2202 17 3 5 9 2 0 0 0 0 0 0
## 2203 17 3 5 9 2 0 0 0 0 0 0
## 2204 17 3 5 9 2 0 0 0 0 0 0
## 2205 17 3 5 9 2 0 0 0 0 0 0
## 2206 17 3 5 9 2 0 0 0 0 0 0
## 2207 17 3 5 9 2 0 0 0 0 0 0
## 2208 17 3 5 9 2 0 0 0 0 0 0
## 2209 17 3 5 9 2 0 0 0 0 0 0
## 2210 17 3 5 9 2 0 0 0 0 0 0
## 2211 17 3 5 9 2 0 0 0 0 0 0
## 2212 17 3 5 9 2 0 0 0 0 0 0
## 2213 17 3 5 9 2 0 0 0 0 0 0
## 2214 17 3 5 9 2 0 0 0 0 0 0
## 2215 17 3 5 9 2 0 0 0 0 0 0
## 2216 17 3 5 9 2 0 0 0 0 0 0
## 2217 17 3 5 9 2 0 0 0 0 0 0
## 2218 17 3 5 9 2 0 0 0 0 0 0
## 2219 17 3 5 9 2 0 0 0 0 0 0
## 2220 17 3 5 9 2 0 0 0 0 0 0
## 2221 17 3 5 9 2 0 0 0 0 0 0
## 2222 13 3 5 8 2 0 0 0 0 0 0
## 2223 13 3 5 8 2 0 0 0 0 0 0
## 2224 13 3 5 8 2 0 0 0 0 0 0
## 2225 13 3 5 8 2 0 0 0 0 0 0
## 2226 13 3 5 8 2 0 0 0 0 0 0
## 2227 13 3 5 8 2 0 0 0 0 0 0
## 2228 13 3 5 8 2 0 0 0 0 0 0
## 2229 13 3 5 8 2 0 0 0 0 0 0
## 2230 13 3 5 8 2 0 0 0 0 0 0
## 2231 13 3 5 8 2 0 0 0 0 0 0
## 2232 13 3 5 8 2 0 0 0 0 0 0
## 2233 13 3 5 8 2 0 0 0 0 0 0
## 2234 12 2 4 5 1 0 0 0 0 0 0
## 2235 12 2 4 5 1 0 0 0 0 0 0
## 2236 12 2 4 5 1 0 0 0 0 0 0
## 2237 12 2 4 5 1 0 0 0 0 0 0
## 2238 12 2 4 5 1 0 0 0 0 0 0
## 2239 12 2 4 5 1 0 0 0 0 0 0
## 2240 12 2 4 5 1 0 0 0 0 0 0
## 2241 12 2 4 5 1 0 0 0 0 0 0
## 2242 12 2 4 5 1 0 0 0 0 0 0
## 2243 12 2 4 5 1 0 0 0 0 0 0
## 2244 12 2 4 5 1 0 0 0 0 0 0
## 2245 12 2 4 5 1 0 0 0 0 0 0
## 2246 12 2 4 5 1 0 0 0 0 0 0
## 2247 12 2 4 5 1 0 0 0 0 0 0
## 2248 12 2 4 5 1 0 0 0 0 0 0
## 2249 12 2 4 5 1 0 0 0 0 0 0
## 2250 12 2 4 5 1 0 0 0 0 0 0
## 2251 12 2 4 5 1 0 0 0 0 0 0
## 2252 12 2 4 5 1 0 0 0 0 0 0
## 2253 12 2 4 5 1 0 0 0 0 0 0
## 2254 12 2 4 5 1 0 0 0 0 0 0
## 2255 12 2 4 5 1 0 0 0 0 0 0
## 2256 12 2 4 5 1 0 0 0 0 0 0
## 2257 12 2 4 5 1 0 0 0 0 0 0
## 2258 57 14 15 43 2 0 0 0 0 0 0
## 2259 57 14 15 43 2 0 0 0 0 0 0
## 2260 57 14 15 43 2 0 0 0 0 0 0
## 2261 57 14 15 43 2 0 0 0 0 0 0
## 2262 57 14 15 43 2 0 0 0 0 0 0
## 2263 57 14 15 43 2 0 0 0 0 0 0
## 2264 57 14 15 43 2 0 0 0 0 0 0
## 2265 57 14 15 43 2 0 0 0 0 0 0
## 2266 57 14 15 43 2 0 0 0 0 0 0
## 2267 57 14 15 43 2 0 0 0 0 0 0
## 2268 48 11 12 29 2 0 0 0 0 0 0
## 2269 48 11 12 29 2 0 0 0 0 0 0
## 2270 57 14 15 43 2 0 0 0 0 0 0
## 2271 57 14 15 43 2 0 0 0 0 0 0
## 2272 57 14 15 43 2 0 0 0 0 0 0
## 2273 57 14 15 43 2 0 0 0 0 0 0
## 2274 57 14 15 43 2 0 0 0 0 0 0
## 2275 57 14 15 43 2 0 0 0 0 0 0
## 2276 57 14 15 43 2 0 0 0 0 0 0
## 2277 57 14 15 43 2 0 0 0 0 0 0
## 2278 57 14 15 43 2 0 0 0 0 0 0
## 2279 57 14 15 43 2 0 0 0 0 0 0
## 2280 48 11 12 29 2 0 0 0 0 0 0
## 2281 48 11 12 29 2 0 0 0 0 0 0
## 2282 57 14 15 43 2 0 0 0 0 0 0
## 2283 57 14 15 43 2 0 0 0 0 0 0
## 2284 57 14 15 43 2 0 0 0 0 0 0
## 2285 57 14 15 43 2 0 0 0 0 0 0
## 2286 57 14 15 43 2 0 0 0 0 0 0
## 2287 57 14 15 43 2 0 0 0 0 0 0
## 2288 57 14 15 43 2 0 0 0 0 0 0
## 2289 57 14 15 43 2 0 0 0 0 0 0
## 2290 57 14 15 43 2 0 0 0 0 0 0
## 2291 57 14 15 43 2 0 0 0 0 0 0
## 2292 48 11 12 29 2 0 0 0 0 0 0
## 2293 48 11 12 29 2 0 0 0 0 0 0
## 2294 30 5 5 16 2 0 0 0 0 0 0
## 2295 30 5 5 16 2 0 0 0 0 0 0
## 2296 30 5 5 16 2 0 0 0 0 0 0
## 2297 30 5 5 16 2 0 0 0 0 0 0
## 2298 30 5 5 16 2 0 0 0 0 0 0
## 2299 30 5 5 16 2 0 0 0 0 0 0
## 2300 30 5 5 16 2 0 0 0 0 0 0
## 2301 30 5 5 16 2 0 0 0 0 0 0
## 2302 30 5 5 16 2 0 0 0 0 0 0
## 2303 30 5 5 16 2 0 0 0 0 0 0
## 2304 30 5 5 16 2 0 0 0 0 0 0
## 2305 30 5 5 16 2 0 0 0 0 0 0
## 2306 30 5 12 14 3 0 0 0 0 0 0
## 2307 30 5 12 14 3 0 0 0 0 0 0
## 2308 30 5 12 15 3 0 0 0 0 0 0
## 2309 30 5 12 15 3 0 0 0 0 0 0
## 2310 30 5 12 15 3 0 0 0 0 0 0
## 2311 30 5 12 15 3 0 0 0 0 0 0
## 2312 30 5 12 15 3 0 0 0 0 0 0
## 2313 30 5 12 15 3 0 0 0 0 0 0
## 2314 30 5 12 15 3 0 0 0 0 0 0
## 2315 30 5 12 15 3 0 0 0 0 0 0
## 2316 30 5 12 15 3 0 0 0 0 0 0
## 2317 30 5 12 15 3 0 0 0 0 0 0
## 2318 30 5 12 14 3 0 0 0 0 0 0
## 2319 30 5 12 14 3 0 0 0 0 0 0
## 2320 30 5 12 15 3 0 0 0 0 0 0
## 2321 30 5 12 15 3 0 0 0 0 0 0
## 2322 30 5 12 15 3 0 0 0 0 0 0
## 2323 30 5 12 15 3 0 0 0 0 0 0
## 2324 30 5 12 15 3 0 0 0 0 0 0
## 2325 30 5 12 15 3 0 0 0 0 0 0
## 2326 30 5 12 15 3 0 0 0 0 0 0
## 2327 30 5 12 15 3 0 0 0 0 0 0
## 2328 30 5 12 15 3 0 0 0 0 0 0
## 2329 30 5 12 15 3 0 0 0 0 0 0
## 2330 8 1 1 5 1 0 0 0 0 0 0
## 2331 8 1 1 5 1 0 0 0 0 0 0
## 2332 8 1 1 5 1 0 0 0 0 0 0
## 2333 8 1 1 5 1 0 0 0 0 0 0
## 2334 8 1 1 5 1 0 0 0 0 0 0
## 2335 8 1 1 5 1 0 0 0 0 0 0
## 2336 8 1 1 5 1 0 0 0 0 0 0
## 2337 8 1 1 5 1 0 0 0 0 0 0
## 2338 8 1 1 5 1 0 0 0 0 0 0
## 2339 8 1 1 5 1 0 0 0 0 0 0
## 2340 8 1 1 5 1 0 0 0 0 0 0
## 2341 8 1 1 5 1 0 0 0 0 0 0
## 2342 30 9 10 19 2 0 4 0 0 0 0
## 2343 30 9 10 19 2 0 4 0 0 0 0
## 2344 30 9 10 19 2 0 4 0 0 0 0
## 2345 30 9 10 19 2 0 4 0 0 0 0
## 2346 30 9 10 19 2 0 4 0 0 0 0
## 2347 30 9 10 19 2 0 4 0 0 0 0
## 2348 30 9 10 19 2 0 4 0 0 0 0
## 2349 30 9 10 19 2 0 4 0 0 0 0
## 2350 30 9 10 19 2 0 4 0 0 0 0
## 2351 30 9 10 19 2 0 4 0 0 0 0
## 2352 30 9 10 19 2 0 4 0 0 0 0
## 2353 30 9 10 19 2 0 4 0 0 0 0
## 2354 30 9 10 19 2 0 4 0 0 0 0
## 2355 30 9 10 19 2 0 4 0 0 0 0
## 2356 30 9 10 19 2 0 4 0 0 0 0
## 2357 30 9 10 19 2 0 4 0 0 0 0
## 2358 30 9 10 19 2 0 4 0 0 0 0
## 2359 30 9 10 19 2 0 4 0 0 0 0
## 2360 30 9 10 19 2 0 4 0 0 0 0
## 2361 30 9 10 19 2 0 4 0 0 0 0
## 2362 30 9 10 19 2 0 4 0 0 0 0
## 2363 30 9 10 19 2 0 4 0 0 0 0
## 2364 30 9 10 19 2 0 4 0 0 0 0
## 2365 30 9 10 19 2 0 4 0 0 0 0
## 2366 112 19 23 70 2 2 0 4 0 0 0
## 2367 112 19 23 70 2 2 0 4 0 0 0
## 2368 112 19 23 70 2 2 0 4 0 0 0
## 2369 130 20 25 85 2 2 0 4 0 0 0
## 2370 130 20 25 85 2 2 0 4 0 0 0
## 2371 130 20 25 85 2 2 0 4 0 0 0
## 2372 130 20 25 85 2 2 0 4 0 0 0
## 2373 130 20 25 85 2 2 0 4 0 0 0
## 2374 130 20 25 85 2 2 0 4 0 0 0
## 2375 130 20 25 85 2 2 0 4 0 0 0
## 2376 130 20 25 85 2 2 0 4 0 0 0
## 2377 130 20 25 85 2 2 0 4 0 0 0
## 2378 18 5 6 11 2 0 0 0 0 0 0
## 2379 18 5 6 11 2 0 0 0 0 0 0
## 2380 18 5 6 11 2 0 0 0 0 0 0
## 2381 18 5 6 11 2 0 0 0 0 0 0
## 2382 18 5 6 11 2 0 0 0 0 0 0
## 2383 18 5 6 11 2 0 0 0 0 0 0
## 2384 18 5 6 11 2 0 0 0 0 0 0
## 2385 18 5 6 11 2 0 0 0 0 0 0
## 2386 18 5 6 11 2 0 0 0 0 0 0
## 2387 18 5 6 11 2 0 0 0 0 0 0
## 2388 18 5 6 11 2 0 0 0 0 0 0
## 2389 18 5 6 11 2 0 0 0 0 0 0
## 2390 18 5 6 11 2 0 0 0 0 0 0
## 2391 18 5 6 11 2 0 0 0 0 0 0
## 2392 18 5 6 11 2 0 0 0 0 0 0
## 2393 18 5 6 11 2 0 0 0 0 0 0
## 2394 18 5 6 11 2 0 0 0 0 0 0
## 2395 18 5 6 11 2 0 0 0 0 0 0
## 2396 18 5 6 11 2 0 0 0 0 0 0
## 2397 18 5 6 11 2 0 0 0 0 0 0
## 2398 18 5 6 11 2 0 0 0 0 0 0
## 2399 18 5 6 11 2 0 0 0 0 0 0
## 2400 18 5 6 11 2 0 0 0 0 0 0
## 2401 18 5 6 11 2 0 0 0 0 0 0
## 2402 18 5 6 11 2 0 0 0 0 0 0
## 2403 18 5 6 11 2 0 0 0 0 0 0
## 2404 18 5 6 11 2 0 0 0 0 0 0
## 2405 18 5 6 11 2 0 0 0 0 0 0
## 2406 18 5 6 11 2 0 0 0 0 0 0
## 2407 18 5 6 11 2 0 0 0 0 0 0
## 2408 18 5 6 11 2 0 0 0 0 0 0
## 2409 18 5 6 11 2 0 0 0 0 0 0
## 2410 18 5 6 11 2 0 0 0 0 0 0
## 2411 18 5 6 11 2 0 0 0 0 0 0
## 2412 18 5 6 11 2 0 0 0 0 0 0
## 2413 18 5 6 11 2 0 0 0 0 0 0
## 2414 18 5 6 11 2 0 0 0 0 0 0
## 2415 18 5 6 11 2 0 0 0 0 0 0
## 2416 18 5 6 11 2 0 0 0 0 0 0
## 2417 18 5 6 11 2 0 0 0 0 0 0
## 2418 18 5 6 11 2 0 0 0 0 0 0
## 2419 18 5 6 11 2 0 0 0 0 0 0
## 2420 18 5 6 11 2 0 0 0 0 0 0
## 2421 18 5 6 11 2 0 0 0 0 0 0
## 2422 18 5 6 11 2 0 0 0 0 0 0
## 2423 18 5 6 11 2 0 0 0 0 0 0
## 2424 18 5 6 11 2 0 0 0 0 0 0
## 2425 18 5 6 11 2 0 0 0 0 0 0
## 2426 47 7 8 18 2 0 0 0 0 0 0
## 2427 47 7 8 18 2 0 0 0 0 0 0
## 2428 47 7 8 18 2 0 0 0 0 0 0
## 2429 47 7 8 18 2 0 0 0 0 0 0
## 2430 47 7 8 18 2 0 0 0 0 0 0
## 2431 47 7 8 18 2 0 0 0 0 0 0
## 2432 47 7 8 18 2 0 0 0 0 0 0
## 2433 47 7 8 18 2 0 0 0 0 0 0
## 2434 47 7 8 18 2 0 0 0 0 0 0
## 2435 47 7 8 18 2 0 0 0 0 0 0
## 2436 47 7 8 18 2 0 0 0 0 0 0
## 2437 47 7 8 18 2 0 0 0 0 0 0
## 2438 13 2 2 12 2 0 0 0 0 0 0
## 2439 13 2 2 12 2 0 0 0 0 0 0
## 2440 13 2 2 12 2 0 0 0 0 0 0
## 2441 13 2 2 12 2 0 0 0 0 0 0
## 2442 13 2 2 12 2 0 0 0 0 0 0
## 2443 13 2 2 12 2 0 0 0 0 0 0
## 2444 13 2 2 12 2 0 0 0 0 0 0
## 2445 13 2 2 12 2 0 0 0 0 0 0
## 2446 13 2 2 12 2 0 0 0 0 0 0
## 2447 13 2 2 12 2 0 0 0 0 0 0
## 2448 13 2 2 12 2 0 0 0 0 0 0
## 2449 13 2 2 12 2 0 0 0 0 0 0
## 2450 9 1 1 6 1 0 0 0 0 0 0
## 2451 9 1 1 6 1 0 0 0 0 0 0
## 2452 9 1 1 6 1 0 0 0 0 0 0
## 2453 9 1 1 6 1 0 0 0 0 0 0
## 2454 9 1 1 6 1 0 0 0 0 0 0
## 2455 9 1 1 6 1 0 0 0 0 0 0
## 2456 9 1 1 6 1 0 0 0 0 0 0
## 2457 9 1 1 6 1 0 0 0 0 0 0
## 2458 9 1 1 6 1 0 0 0 0 0 0
## 2459 9 1 1 6 1 0 0 0 0 0 0
## 2460 9 1 1 6 1 0 0 0 0 0 0
## 2461 9 1 1 6 1 0 0 0 0 0 0
## 2462 11 3 3 6 0 0 0 0 0 0 0
## 2463 11 3 3 6 0 0 0 0 0 0 0
## 2464 11 3 3 7 0 0 0 0 0 0 0
## 2465 11 3 3 7 0 0 0 0 0 0 0
## 2466 11 3 3 7 0 0 0 0 0 0 0
## 2467 11 3 3 7 0 0 0 0 0 0 0
## 2468 11 3 3 7 0 0 0 0 0 0 0
## 2469 11 3 3 7 0 0 0 0 0 0 0
## 2470 11 3 3 7 0 0 0 0 0 0 0
## 2471 11 3 3 7 0 0 0 0 0 0 0
## 2472 11 3 3 7 0 0 0 0 0 0 0
## 2473 11 3 3 7 0 0 0 0 0 0 0
## 2474 24 5 6 17 2 0 1 0 0 0 0
## 2475 24 5 6 17 2 0 1 0 0 0 0
## 2476 24 5 6 17 2 0 1 0 0 0 0
## 2477 42 8 11 29 2 0 1 2 0 0 0
## 2478 42 8 11 29 2 0 1 2 0 0 0
## 2479 42 8 11 29 2 0 1 2 0 0 0
## 2480 42 8 11 29 2 0 1 2 0 0 0
## 2481 42 8 11 29 2 0 1 2 0 0 0
## 2482 42 8 11 29 2 0 1 2 0 0 0
## 2483 42 8 11 29 2 0 1 2 0 0 0
## 2484 42 8 11 29 2 0 1 2 0 0 0
## 2485 42 8 11 29 2 0 1 2 0 0 0
## 2486 47 7 8 41 5 2 1 0 0 0 0
## 2487 47 7 8 41 5 2 1 0 0 0 0
## 2488 47 7 8 41 5 2 1 0 0 0 0
## 2489 47 7 8 41 5 2 1 0 0 0 0
## 2490 47 7 8 41 5 2 1 0 0 0 0
## 2491 47 7 8 41 5 2 1 0 0 0 0
## 2492 47 7 8 41 5 2 1 0 0 0 0
## 2493 47 7 8 41 5 2 1 0 0 0 0
## 2494 47 7 8 41 5 2 1 0 0 0 0
## 2495 47 7 8 41 5 2 1 0 0 0 0
## 2496 47 7 8 41 5 2 1 0 0 0 0
## 2497 47 7 8 41 5 2 1 0 0 0 0
## 2498 17 3 4 9 2 0 0 0 0 0 0
## 2499 17 3 4 9 2 0 0 0 0 0 0
## 2500 17 3 4 9 2 0 0 0 0 0 0
## 2501 17 3 4 9 2 0 0 0 0 0 0
## 2502 17 3 4 9 2 0 0 0 0 0 0
## 2503 17 3 4 9 2 0 0 0 0 0 0
## 2504 17 3 4 9 2 0 0 0 0 0 0
## 2505 17 3 4 9 2 0 0 0 0 0 0
## 2506 17 3 4 9 2 0 0 0 0 0 0
## 2507 17 3 4 9 2 0 0 0 0 0 0
## 2508 17 3 4 9 2 0 0 0 0 0 0
## 2509 17 3 4 9 2 0 0 0 0 0 0
## 2510 16 3 4 10 2 0 0 0 0 0 0
## 2511 16 3 4 10 2 0 0 0 0 0 0
## 2512 16 3 4 10 2 0 0 0 0 0 0
## 2513 16 3 4 10 2 0 0 0 0 0 0
## 2514 16 3 4 10 2 0 0 0 0 0 0
## 2515 16 3 4 10 2 0 0 0 0 0 0
## 2516 16 3 4 10 2 0 0 0 0 0 0
## 2517 16 3 4 10 2 0 0 0 0 0 0
## 2518 15 3 4 14 2 0 0 0 0 0 0
## 2519 15 3 4 14 2 0 0 0 0 0 0
## 2520 78 14 15 84 2 0 0 0 0 0 0
## 2521 78 14 15 84 2 0 0 0 0 0 0
## 2522 78 14 15 84 2 0 0 0 0 0 0
## 2523 78 14 15 84 2 0 0 0 0 0 0
## 2524 78 14 15 84 2 0 0 0 0 0 0
## 2525 78 14 15 84 2 0 0 0 0 0 0
## 2526 78 14 15 84 2 0 0 0 0 0 0
## 2527 78 14 15 84 2 0 0 0 0 0 0
## 2528 78 14 15 84 2 0 0 0 0 0 0
## 2529 78 14 15 84 2 0 0 0 0 0 0
## 2530 78 14 15 84 2 0 0 0 0 0 0
## 2531 78 14 15 84 2 0 0 0 0 0 0
## 2532 11 2 3 5 2 0 0 0 0 0 0
## 2533 11 2 3 5 2 0 0 0 0 0 0
## 2534 11 2 3 5 2 0 0 0 0 0 0
## 2535 11 2 3 5 2 0 0 0 0 0 0
## 2536 11 2 3 5 2 0 0 0 0 0 0
## 2537 11 2 3 5 2 0 0 0 0 0 0
## 2538 11 2 3 5 2 0 0 0 0 0 0
## 2539 11 2 3 5 2 0 0 0 0 0 0
## 2540 11 2 3 5 2 0 0 0 0 0 0
## 2541 11 2 3 5 2 0 0 0 0 0 0
## 2542 9 2 3 4 1 0 0 0 0 0 0
## 2543 9 2 3 4 1 0 0 0 0 0 0
## 2544 9 2 3 4 1 0 0 0 0 0 0
## 2545 9 2 3 4 1 0 0 0 0 0 0
## 2546 9 2 3 4 1 0 0 0 0 0 0
## 2547 9 2 3 4 1 0 0 0 0 0 0
## 2548 9 2 3 4 1 0 0 0 0 0 0
## 2549 9 2 3 4 1 0 0 0 0 0 0
## 2550 9 2 3 4 1 0 0 0 0 0 0
## 2551 9 2 3 4 1 0 0 0 0 0 0
## 2552 9 2 3 4 1 0 0 0 0 0 0
## 2553 9 2 3 4 1 0 0 0 0 0 0
## 2554 9 2 3 4 1 0 0 0 0 0 0
## 2555 9 2 3 4 1 0 0 0 0 0 0
## 2556 9 2 3 4 1 0 0 0 0 0 0
## 2557 9 2 3 4 1 0 0 0 0 0 0
## 2558 9 2 3 4 1 0 0 0 0 0 0
## 2559 9 2 3 4 1 0 0 0 0 0 0
## 2560 9 2 3 4 1 0 0 0 0 0 0
## 2561 9 2 3 4 1 0 0 0 0 0 0
## 2562 9 2 3 4 1 0 0 0 0 0 0
## 2563 9 2 3 4 1 0 0 0 0 0 0
## 2564 9 2 3 4 1 0 0 0 0 0 0
## 2565 9 2 3 4 1 0 0 0 0 0 0
## 2566 10 2 3 4 1 0 0 0 0 0 0
## 2567 10 2 3 4 1 0 0 0 0 0 0
## 2568 10 2 3 4 1 0 0 0 0 0 0
## 2569 10 2 3 4 1 0 0 0 0 0 0
## 2570 10 2 3 4 1 0 0 0 0 0 0
## 2571 10 2 3 4 1 0 0 0 0 0 0
## 2572 10 2 3 4 1 0 0 0 0 0 0
## 2573 10 2 3 4 1 0 0 0 0 0 0
## 2574 9 2 3 8 1 0 0 0 0 0 0
## 2575 9 2 3 8 1 0 0 0 0 0 0
## 2576 10 2 3 4 1 0 0 0 0 0 0
## 2577 10 2 3 4 1 0 0 0 0 0 0
## 2578 10 2 3 4 1 0 0 0 0 0 0
## 2579 10 2 3 4 1 0 0 0 0 0 0
## 2580 10 2 3 4 1 0 0 0 0 0 0
## 2581 10 2 3 4 1 0 0 0 0 0 0
## 2582 10 2 3 4 1 0 0 0 0 0 0
## 2583 10 2 3 4 1 0 0 0 0 0 0
## 2584 9 2 3 8 1 0 0 0 0 0 0
## 2585 9 2 3 8 1 0 0 0 0 0 0
## 2586 134 30 31 183 2 0 0 36 0 0 0
## 2587 134 30 31 183 2 0 0 36 0 0 0
## 2588 134 30 31 183 2 0 0 36 0 0 0
## 2589 134 30 31 183 2 0 0 36 0 0 0
## 2590 134 30 31 183 2 0 0 36 0 0 0
## 2591 134 30 31 183 2 0 0 36 0 0 0
## 2592 134 30 31 183 2 0 0 36 0 0 0
## 2593 134 30 31 183 2 0 0 36 0 0 0
## 2594 134 30 31 183 2 0 0 36 0 0 0
## 2595 134 30 31 183 2 0 0 36 0 0 0
## 2596 134 30 31 183 2 0 0 36 0 0 0
## 2597 134 30 31 183 2 0 0 36 0 0 0
## 2598 49 6 9 23 2 0 0 0 0 0 0
## 2599 49 6 9 23 2 0 0 0 0 0 0
## 2600 49 6 9 23 2 0 0 0 0 0 0
## 2601 49 6 9 23 2 0 0 0 0 0 0
## 2602 49 6 9 23 2 0 0 0 0 0 0
## 2603 49 6 9 23 2 0 0 0 0 0 0
## 2604 49 6 9 23 2 0 0 0 0 0 0
## 2605 49 6 9 23 2 0 0 0 0 0 0
## 2606 49 6 9 23 2 0 0 0 0 0 0
## 2607 49 6 9 23 2 0 0 0 0 0 0
## 2608 49 6 9 23 2 0 0 0 0 0 0
## 2609 49 6 9 23 2 0 0 0 0 0 0
## 2610 27 5 6 13 2 0 0 0 0 0 0
## 2611 27 5 6 13 2 0 0 0 0 0 0
## 2612 27 5 6 13 2 0 0 0 0 0 0
## 2613 27 5 6 13 2 0 0 0 0 0 0
## 2614 27 5 6 13 2 0 0 0 0 0 0
## 2615 27 5 6 13 2 0 0 0 0 0 0
## 2616 27 5 6 13 2 0 0 0 0 0 0
## 2617 27 5 6 13 2 0 0 0 0 0 0
## 2618 27 5 6 13 2 0 0 0 0 0 0
## 2619 27 5 6 13 2 0 0 0 0 0 0
## 2620 26 5 6 17 2 0 0 0 0 0 0
## 2621 26 5 6 17 2 0 0 0 0 0 0
## 2622 69 18 23 28 2 0 0 0 0 0 0
## 2623 69 18 23 28 2 0 0 0 0 0 0
## 2624 60 18 20 30 2 0 0 0 2 0 0
## 2625 60 18 20 30 2 0 0 0 2 0 0
## 2626 60 18 20 30 2 0 0 0 2 0 0
## 2627 60 18 20 30 2 0 0 0 2 0 0
## 2628 60 18 20 30 2 0 0 0 2 0 0
## 2629 60 18 20 30 2 0 0 0 2 0 0
## 2630 60 18 20 30 2 0 0 0 2 0 0
## 2631 60 18 20 30 2 0 0 0 2 0 0
## 2632 60 18 20 30 2 0 0 0 2 0 0
## 2633 60 18 20 30 2 0 0 0 2 0 0
## 2634 95 12 21 47 18 9 9 1 0 0 0
## 2635 95 12 21 47 18 9 9 1 0 0 0
## 2636 95 12 21 47 18 9 9 1 0 0 0
## 2637 95 12 21 47 18 9 9 1 0 0 0
## 2638 95 12 21 47 18 9 9 1 0 0 0
## 2639 95 12 21 47 18 9 9 1 0 0 0
## 2640 95 12 21 47 18 9 9 1 0 0 0
## 2641 95 12 21 47 18 9 9 1 0 0 0
## 2642 95 12 21 47 18 9 9 1 0 0 0
## 2643 95 12 21 47 18 9 9 1 0 0 0
## 2644 95 12 21 47 18 9 9 1 0 0 0
## 2645 95 12 21 47 18 9 9 1 0 0 0
## 2646 95 12 21 47 18 9 9 1 0 0 0
## 2647 95 12 21 47 18 9 9 1 0 0 0
## 2648 95 12 21 47 18 9 9 1 0 0 0
## 2649 95 12 21 47 18 9 9 1 0 0 0
## 2650 95 12 21 47 18 9 9 1 0 0 0
## 2651 95 12 21 47 18 9 9 1 0 0 0
## 2652 95 12 21 47 18 9 9 1 0 0 0
## 2653 95 12 21 47 18 9 9 1 0 0 0
## 2654 95 12 21 47 18 9 9 1 0 0 0
## 2655 95 12 21 47 18 9 9 1 0 0 0
## 2656 95 12 21 47 18 9 9 1 0 0 0
## 2657 95 12 21 47 18 9 9 1 0 0 0
## 2658 204 31 39 143 3 3 14 0 0 0 0
## 2659 204 31 39 143 3 3 14 0 0 0 0
## 2660 204 31 39 143 3 3 14 0 0 0 0
## 2661 204 31 39 143 3 3 14 0 0 0 0
## 2662 204 31 39 143 3 3 14 0 0 0 0
## 2663 204 31 39 143 3 3 14 0 0 0 0
## 2664 204 31 39 143 3 3 14 0 0 0 0
## 2665 204 31 39 143 3 3 14 0 0 0 0
## 2666 204 31 39 143 3 3 14 0 0 0 0
## 2667 204 31 39 143 3 3 14 0 0 0 0
## 2668 204 31 39 143 3 3 14 0 0 0 0
## 2669 204 31 39 143 3 3 14 0 0 0 0
## 2670 34 6 12 18 0 2 0 7 0 0 0
## 2671 34 6 12 18 0 2 0 7 0 0 0
## 2672 34 6 12 18 0 2 0 7 0 0 0
## 2673 33 6 12 18 0 2 0 7 0 0 0
## 2674 33 6 12 18 0 2 0 7 0 0 0
## 2675 33 6 12 18 0 2 0 7 0 0 0
## 2676 33 6 12 18 0 2 0 7 0 0 0
## 2677 33 6 12 18 0 2 0 7 0 0 0
## 2678 33 6 12 18 0 2 0 7 0 0 0
## 2679 33 6 12 18 0 2 0 7 0 0 0
## 2680 33 6 12 18 0 2 0 7 0 0 0
## 2681 33 6 12 18 0 2 0 7 0 0 0
## 2682 18 2 2 12 3 0 0 0 0 0 0
## 2683 18 2 2 12 3 0 0 0 0 0 0
## 2684 18 2 2 12 3 0 0 0 0 0 0
## 2685 18 2 2 12 3 0 0 0 0 0 0
## 2686 18 2 2 12 3 0 0 0 0 0 0
## 2687 18 2 2 12 3 0 0 0 0 0 0
## 2688 18 2 2 12 3 0 0 0 0 0 0
## 2689 18 2 2 12 3 0 0 0 0 0 0
## 2690 18 2 2 12 3 0 0 0 0 0 0
## 2691 18 2 2 12 3 0 0 0 0 0 0
## 2692 18 2 2 12 3 0 0 0 0 0 0
## 2693 18 2 2 12 3 0 0 0 0 0 0
## 2694 199 21 46 135 2 2 2 5 0 0 0
## 2695 199 21 46 135 2 2 2 5 0 0 0
## 2696 199 21 46 135 2 2 2 5 0 0 0
## 2697 199 21 46 135 2 2 2 5 0 0 0
## 2698 199 21 46 135 2 2 2 5 0 0 0
## 2699 199 21 46 135 2 2 2 5 0 0 0
## 2700 199 21 46 135 2 2 2 5 0 0 0
## 2701 199 21 46 135 2 2 2 5 0 0 0
## 2702 199 21 46 135 2 2 2 5 0 0 0
## 2703 199 21 46 135 2 2 2 5 0 0 0
## 2704 199 21 46 135 2 2 2 5 0 0 0
## 2705 199 21 46 135 2 2 2 5 0 0 0
## 2706 61 6 17 18 1 1 0 0 0 2 1
## 2707 61 6 17 18 1 1 0 0 0 2 1
## 2708 61 6 17 18 1 1 0 0 0 2 1
## 2709 62 6 17 18 1 1 0 0 0 2 1
## 2710 67 6 17 18 1 1 0 0 0 2 1
## 2711 87 6 17 18 1 1 0 0 0 2 1
## 2712 101 6 17 18 1 1 0 0 0 2 1
## 2713 101 6 17 18 1 1 0 0 0 2 1
## 2714 101 6 17 18 1 1 0 0 0 2 1
## 2715 117 6 17 22 1 1 0 0 0 2 1
## 2716 124 6 17 22 1 1 0 0 0 2 1
## 2717 126 6 17 22 1 1 0 0 0 2 1
## 2718 61 6 17 18 1 1 0 0 0 2 1
## 2719 61 6 17 18 1 1 0 0 0 2 1
## 2720 61 6 17 18 1 1 0 0 0 2 1
## 2721 62 6 17 18 1 1 0 0 0 2 1
## 2722 67 6 17 18 1 1 0 0 0 2 1
## 2723 87 6 17 18 1 1 0 0 0 2 1
## 2724 101 6 17 18 1 1 0 0 0 2 1
## 2725 101 6 17 18 1 1 0 0 0 2 1
## 2726 101 6 17 18 1 1 0 0 0 2 1
## 2727 117 6 17 22 1 1 0 0 0 2 1
## 2728 124 6 17 22 1 1 0 0 0 2 1
## 2729 126 6 17 22 1 1 0 0 0 2 1
## 2730 30 4 12 9 0 2 0 0 0 0 0
## 2731 30 4 12 9 0 2 0 0 0 0 0
## 2732 30 4 12 9 0 2 0 0 0 0 0
## 2733 30 4 12 9 0 2 0 0 0 0 0
## 2734 30 4 12 9 0 2 0 0 0 0 0
## 2735 30 4 12 9 0 2 0 0 0 0 0
## 2736 30 4 12 9 0 2 0 0 0 0 0
## 2737 30 4 12 9 0 2 0 0 0 0 0
## 2738 30 4 12 9 0 2 0 0 0 0 0
## 2739 30 4 12 9 0 2 0 0 0 0 0
## 2740 30 4 12 9 0 2 0 0 0 0 0
## 2741 30 4 12 9 0 2 0 0 0 0 0
## 2742 30 4 12 9 0 2 0 0 0 0 0
## 2743 30 4 12 9 0 2 0 0 0 0 0
## 2744 10 1 2 7 3 1 0 0 0 0 0
## 2745 10 1 2 7 3 1 0 0 0 0 0
## 2746 10 1 2 7 3 1 0 0 0 0 0
## 2747 10 1 2 7 3 1 0 0 0 0 0
## 2748 10 1 2 7 3 1 0 0 0 0 0
## 2749 10 1 2 7 3 1 0 0 0 0 0
## 2750 10 1 2 7 3 1 0 0 0 0 0
## 2751 10 1 2 7 3 1 0 0 0 0 0
## 2752 10 1 2 7 3 1 0 0 0 0 0
## 2753 10 1 2 7 3 1 0 0 0 0 0
## 2754 10 1 2 7 3 1 0 0 0 0 0
## 2755 10 1 2 7 3 1 0 0 0 0 0
## 2756 10 1 2 7 3 1 0 0 0 0 0
## 2757 10 1 2 7 3 1 0 0 0 0 0
## 2758 6 1 2 4 1 0 0 0 0 0 0
## 2759 6 1 2 4 1 0 0 0 0 0 0
## 2760 6 1 2 4 1 0 0 0 0 0 0
## 2761 6 1 2 4 1 0 0 0 0 0 0
## 2762 6 1 2 4 1 0 0 0 0 0 0
## 2763 6 1 2 4 1 0 0 0 0 0 0
## 2764 6 1 2 4 1 0 0 0 0 0 0
## 2765 6 1 2 4 1 0 0 0 0 0 0
## 2766 6 1 2 4 1 0 0 0 0 0 0
## 2767 6 1 2 4 1 0 0 0 0 0 0
## 2768 6 1 2 4 1 0 0 0 0 0 0
## 2769 6 1 2 4 1 0 0 0 0 0 0
## 2770 30 5 6 21 2 0 0 0 0 0 0
## 2771 30 5 6 21 2 0 0 0 0 0 0
## 2772 30 5 6 21 2 0 0 0 0 0 0
## 2773 30 5 6 21 2 0 0 0 0 0 0
## 2774 30 5 6 21 2 0 0 0 0 0 0
## 2775 30 5 6 21 2 0 0 0 0 0 0
## 2776 30 5 6 21 2 0 0 0 0 0 0
## 2777 30 5 6 21 2 0 0 0 0 0 0
## 2778 30 5 6 21 2 0 0 0 0 0 0
## 2779 30 5 6 21 2 0 0 0 0 0 0
## 2780 30 5 6 21 2 0 0 0 0 0 0
## 2781 30 5 6 21 2 0 0 0 0 0 0
## 2782 30 5 6 21 2 0 0 0 0 0 0
## 2783 30 5 6 21 2 0 0 0 0 0 0
## 2784 30 5 6 21 2 0 0 0 0 0 0
## 2785 30 5 6 21 2 0 0 0 0 0 0
## 2786 30 5 6 21 2 0 0 0 0 0 0
## 2787 30 5 6 21 2 0 0 0 0 0 0
## 2788 30 5 6 21 2 0 0 0 0 0 0
## 2789 30 5 6 21 2 0 0 0 0 0 0
## 2790 30 5 6 21 2 0 0 0 0 0 0
## 2791 30 5 6 21 2 0 0 0 0 0 0
## 2792 30 5 6 21 2 0 0 0 0 0 0
## 2793 30 5 6 21 2 0 0 0 0 0 0
## 2794 64 11 23 53 2 0 0 0 0 0 0
## 2795 64 11 23 53 2 0 0 0 0 0 0
## 2796 64 11 23 53 2 0 0 0 0 0 0
## 2797 64 11 23 53 2 0 0 0 0 0 0
## 2798 64 11 23 53 2 0 0 0 0 0 0
## 2799 64 11 23 53 2 0 0 0 0 0 0
## 2800 64 11 23 53 2 0 0 0 0 0 0
## 2801 64 11 23 53 2 0 0 0 0 0 0
## 2802 64 11 23 53 2 0 0 0 0 0 0
## 2803 64 11 23 53 2 0 0 0 0 0 0
## 2804 64 11 23 53 2 0 0 0 0 0 0
## 2805 64 11 23 53 2 0 0 0 0 0 0
## 2806 64 11 23 53 2 0 0 0 0 0 0
## 2807 64 11 23 53 2 0 0 0 0 0 0
## 2808 64 11 23 53 2 0 0 0 0 0 0
## 2809 64 11 23 53 2 0 0 0 0 0 0
## 2810 64 11 23 53 2 0 0 0 0 0 0
## 2811 64 11 23 53 2 0 0 0 0 0 0
## 2812 64 11 23 53 2 0 0 0 0 0 0
## 2813 64 11 23 53 2 0 0 0 0 0 0
## 2814 64 11 23 53 2 0 0 0 0 0 0
## 2815 64 11 23 53 2 0 0 0 0 0 0
## 2816 64 11 23 53 2 0 0 0 0 0 0
## 2817 64 11 23 53 2 0 0 0 0 0 0
## 2818 7 1 1 7 1 0 0 0 0 0 0
## 2819 7 1 1 7 1 0 0 0 0 0 0
## 2820 7 1 1 7 1 0 0 0 0 0 0
## 2821 7 1 1 7 1 0 0 0 0 0 0
## 2822 7 1 1 7 1 0 0 0 0 0 0
## 2823 7 1 1 7 1 0 0 0 0 0 0
## 2824 7 1 1 7 1 0 0 0 0 0 0
## 2825 7 1 1 7 1 0 0 0 0 0 0
## 2826 7 1 1 7 1 0 0 0 0 0 0
## 2827 7 1 1 7 1 0 0 0 0 0 0
## 2828 7 1 1 7 1 0 0 0 0 0 0
## 2829 7 1 1 7 1 0 0 0 0 0 0
## 2830 7 1 1 7 1 0 0 0 0 0 0
## 2831 7 1 1 7 1 0 0 0 0 0 0
## 2832 7 1 1 7 1 0 0 0 0 0 0
## 2833 7 1 1 7 1 0 0 0 0 0 0
## 2834 7 1 1 7 1 0 0 0 0 0 0
## 2835 7 1 1 7 1 0 0 0 0 0 0
## 2836 7 1 1 7 1 0 0 0 0 0 0
## 2837 7 1 1 7 1 0 0 0 0 0 0
## 2838 7 1 1 7 1 0 0 0 0 0 0
## 2839 7 1 1 7 1 0 0 0 0 0 0
## 2840 7 1 1 7 1 0 0 0 0 0 0
## 2841 7 1 1 7 1 0 0 0 0 0 0
## 2842 29 5 7 25 2 0 0 0 0 0 0
## 2843 29 5 7 25 2 0 0 0 0 0 0
## 2844 29 5 7 25 2 0 0 0 0 0 0
## 2845 29 5 7 25 2 0 0 0 0 0 0
## 2846 29 5 7 25 2 0 0 0 0 0 0
## 2847 29 5 7 25 2 0 0 0 0 0 0
## 2848 29 5 7 25 2 0 0 0 0 0 0
## 2849 29 5 7 25 2 0 0 0 0 0 0
## 2850 29 5 7 25 2 0 0 0 0 0 0
## 2851 29 5 7 25 2 0 0 0 0 0 0
## 2852 29 5 7 25 2 0 0 0 0 0 0
## 2853 29 5 7 25 2 0 0 0 0 0 0
## 2854 29 5 7 25 2 0 0 0 0 0 0
## 2855 29 5 7 25 2 0 0 0 0 0 0
## 2856 29 5 7 25 2 0 0 0 0 0 0
## 2857 29 5 7 25 2 0 0 0 0 0 0
## 2858 29 5 7 25 2 0 0 0 0 0 0
## 2859 29 5 7 25 2 0 0 0 0 0 0
## 2860 29 5 7 25 2 0 0 0 0 0 0
## 2861 29 5 7 25 2 0 0 0 0 0 0
## 2862 29 5 7 25 2 0 0 0 0 0 0
## 2863 29 5 7 25 2 0 0 0 0 0 0
## 2864 29 5 7 25 2 0 0 0 0 0 0
## 2865 29 5 7 25 2 0 0 0 0 0 0
## 2866 14 3 4 13 2 0 0 0 0 0 0
## 2867 14 3 4 13 2 0 0 0 0 0 0
## 2868 14 3 4 15 2 0 0 0 2 0 0
## 2869 14 3 4 15 2 0 0 0 2 0 0
## 2870 14 3 4 15 2 0 0 0 2 0 0
## 2871 14 3 4 15 2 0 0 0 2 0 0
## 2872 14 3 4 15 2 0 0 0 2 0 0
## 2873 14 3 4 15 2 0 0 0 2 0 0
## 2874 14 3 4 15 2 0 0 0 2 0 0
## 2875 14 3 4 15 2 0 0 0 2 0 0
## 2876 14 3 4 15 2 0 0 0 2 0 0
## 2877 14 3 4 15 2 0 0 0 2 0 0
## 2878 14 3 4 13 2 0 0 0 0 0 0
## 2879 14 3 4 13 2 0 0 0 0 0 0
## 2880 14 3 4 15 2 0 0 0 2 0 0
## 2881 14 3 4 15 2 0 0 0 2 0 0
## 2882 14 3 4 15 2 0 0 0 2 0 0
## 2883 14 3 4 15 2 0 0 0 2 0 0
## 2884 14 3 4 15 2 0 0 0 2 0 0
## 2885 14 3 4 15 2 0 0 0 2 0 0
## 2886 14 3 4 15 2 0 0 0 2 0 0
## 2887 14 3 4 15 2 0 0 0 2 0 0
## 2888 14 3 4 15 2 0 0 0 2 0 0
## 2889 14 3 4 15 2 0 0 0 2 0 0
## 2890 69 9 14 63 2 2 0 6 0 0 0
## 2891 69 9 14 63 2 2 0 6 0 0 0
## 2892 69 9 14 63 2 2 0 6 0 0 0
## 2893 69 9 14 63 2 2 0 6 0 0 0
## 2894 69 9 14 63 2 2 0 6 0 0 0
## 2895 69 9 14 63 2 2 0 6 0 0 0
## 2896 69 9 14 63 2 2 0 6 0 0 0
## 2897 69 9 14 63 2 2 0 6 0 0 0
## 2898 69 9 14 63 2 2 0 6 0 0 0
## 2899 69 9 14 63 2 2 0 6 0 0 0
## 2900 69 9 14 63 2 2 0 6 0 0 0
## 2901 69 9 14 63 2 2 0 6 0 0 0
## 2902 56 10 23 48 2 0 0 0 0 0 0
## 2903 56 10 23 48 2 0 0 0 0 0 0
## 2904 56 10 23 48 2 0 0 0 0 0 0
## 2905 56 10 23 48 2 0 0 0 0 0 0
## 2906 56 10 23 48 2 0 0 0 0 0 0
## 2907 56 10 23 48 2 0 0 0 0 0 0
## 2908 56 10 23 48 2 0 0 0 0 0 0
## 2909 56 10 23 48 2 0 0 0 0 0 0
## 2910 56 10 23 48 2 0 0 0 0 0 0
## 2911 56 10 23 48 2 0 0 0 0 0 0
## 2912 56 10 23 48 2 0 0 0 0 0 0
## 2913 56 10 23 48 2 0 0 0 0 0 0
## 2914 56 10 23 48 2 0 0 0 0 0 0
## 2915 56 10 23 48 2 0 0 0 0 0 0
## 2916 56 10 23 48 2 0 0 0 0 0 0
## 2917 56 10 23 48 2 0 0 0 0 0 0
## 2918 56 10 23 48 2 0 0 0 0 0 0
## 2919 56 10 23 48 2 0 0 0 0 0 0
## 2920 56 10 23 48 2 0 0 0 0 0 0
## 2921 56 10 23 48 2 0 0 0 0 0 0
## 2922 56 10 23 48 2 0 0 0 0 0 0
## 2923 56 10 23 48 2 0 0 0 0 0 0
## 2924 56 10 23 48 2 0 0 0 0 0 0
## 2925 56 10 23 48 2 0 0 0 0 0 0
## 2926 123 18 19 79 5 0 0 4 0 0 0
## 2927 123 18 19 79 5 0 0 4 0 0 0
## 2928 123 18 19 79 5 0 0 4 0 0 0
## 2929 123 18 19 79 5 0 0 4 0 0 0
## 2930 123 18 19 79 5 0 0 4 0 0 0
## 2931 123 18 19 79 5 0 0 4 0 0 0
## 2932 123 18 19 79 5 0 0 4 0 0 0
## 2933 123 18 19 79 5 0 0 4 0 0 0
## 2934 123 18 19 79 5 0 0 4 0 0 0
## 2935 123 18 19 79 5 0 0 4 0 0 0
## 2936 123 18 19 79 5 0 0 4 0 0 0
## 2937 123 18 19 79 5 0 0 4 0 0 0
## 2938 123 18 19 79 5 0 0 4 0 0 0
## 2939 123 18 19 79 5 0 0 4 0 0 0
## 2940 123 18 19 79 5 0 0 4 0 0 0
## 2941 123 18 19 79 5 0 0 4 0 0 0
## 2942 123 18 19 79 5 0 0 4 0 0 0
## 2943 123 18 19 79 5 0 0 4 0 0 0
## 2944 123 18 19 79 5 0 0 4 0 0 0
## 2945 123 18 19 79 5 0 0 4 0 0 0
## 2946 123 18 19 79 5 0 0 4 0 0 0
## 2947 123 18 19 79 5 0 0 4 0 0 0
## 2948 123 18 19 79 5 0 0 4 0 0 0
## 2949 123 18 19 79 5 0 0 4 0 0 0
## 2950 36 6 7 28 2 0 0 0 0 0 0
## 2951 36 6 7 28 2 0 0 0 0 0 0
## 2952 36 6 7 28 2 0 0 0 0 0 0
## 2953 36 6 7 28 2 0 0 0 0 0 0
## 2954 36 6 7 28 2 0 0 0 0 0 0
## 2955 36 6 7 28 2 0 0 0 0 0 0
## 2956 36 6 7 28 2 0 0 0 0 0 0
## 2957 36 6 7 28 2 0 0 0 0 0 0
## 2958 36 6 7 28 2 0 0 0 0 0 0
## 2959 36 6 7 28 2 0 0 0 0 0 0
## 2960 36 6 7 28 2 0 0 0 0 0 0
## 2961 36 6 7 28 2 0 0 0 0 0 0
## 2962 44 7 11 26 5 0 2 1 0 0 0
## 2963 44 7 11 26 5 0 2 1 0 0 0
## 2964 44 7 11 26 5 0 2 1 0 0 0
## 2965 44 7 11 26 5 0 2 1 0 0 0
## 2966 44 7 11 26 5 0 2 1 0 0 0
## 2967 44 7 11 26 5 0 2 1 0 0 0
## 2968 44 7 11 26 5 0 2 1 0 0 0
## 2969 44 7 11 26 5 0 2 1 0 0 0
## 2970 44 7 11 26 5 0 2 1 0 0 0
## 2971 44 7 11 26 5 0 2 1 0 0 0
## 2972 44 7 11 26 5 0 2 1 0 0 0
## 2973 44 7 11 26 5 0 2 1 0 0 0
## 2974 105 14 23 62 2 0 0 3 0 0 0
## 2975 105 14 23 62 2 0 0 3 0 0 0
## 2976 105 14 23 62 2 0 0 3 0 0 0
## 2977 105 14 23 62 2 0 0 3 0 0 0
## 2978 105 14 23 62 2 0 0 3 0 0 0
## 2979 105 14 23 62 2 0 0 3 0 0 0
## 2980 105 14 23 62 2 0 0 3 0 0 0
## 2981 105 14 23 62 2 0 0 3 0 0 0
## 2982 105 14 23 62 2 0 0 3 0 0 0
## 2983 105 14 23 62 2 0 0 3 0 0 0
## 2984 105 14 23 62 2 0 0 3 0 0 0
## 2985 105 14 23 62 2 0 0 3 0 0 0
## 2986 105 14 23 62 2 0 0 3 0 0 0
## 2987 105 14 23 62 2 0 0 3 0 0 0
## 2988 105 14 23 62 2 0 0 3 0 0 0
## 2989 105 14 23 62 2 0 0 3 0 0 0
## 2990 105 14 23 62 2 0 0 3 0 0 0
## 2991 105 14 23 62 2 0 0 3 0 0 0
## 2992 105 14 23 62 2 0 0 3 0 0 0
## 2993 105 14 23 62 2 0 0 3 0 0 0
## 2994 105 14 23 62 2 0 0 3 0 0 0
## 2995 105 14 23 62 2 0 0 3 0 0 0
## 2996 105 14 23 62 2 0 0 3 0 0 0
## 2997 105 14 23 62 2 0 0 3 0 0 0
## 2998 192 14 38 84 2 2 0 17 0 0 0
## 2999 208 17 45 89 2 2 0 23 0 0 0
## 3000 208 17 45 89 2 2 0 23 0 0 0
## 3001 208 17 45 89 2 2 0 23 0 0 0
## 3002 208 17 45 89 2 2 0 23 0 0 0
## 3003 208 17 45 89 2 2 0 23 0 0 0
## 3004 208 17 45 89 2 2 0 23 0 0 0
## 3005 208 17 45 89 2 2 0 23 0 0 0
## 3006 208 17 45 89 2 2 0 23 0 0 0
## 3007 208 17 45 89 2 2 0 23 0 0 0
## 3008 208 17 45 89 2 2 0 23 0 0 0
## 3009 208 17 45 89 2 2 0 23 0 0 0
## 3010 53 9 11 44 2 0 0 0 0 0 0
## 3011 53 9 11 44 2 0 0 0 0 0 0
## 3012 53 9 11 44 2 0 0 0 0 0 0
## 3013 53 9 11 44 2 0 0 0 0 0 0
## 3014 53 9 11 44 2 0 0 0 0 0 0
## 3015 53 9 11 44 2 0 0 0 0 0 0
## 3016 53 9 11 44 2 0 0 0 0 0 0
## 3017 53 9 11 44 2 0 0 0 0 0 0
## 3018 53 9 11 44 2 0 0 0 0 0 0
## 3019 53 9 11 44 2 0 0 0 0 0 0
## 3020 53 9 11 44 2 0 0 0 0 0 0
## 3021 53 9 11 44 2 0 0 0 0 0 0
## 3022 53 9 11 44 2 0 0 0 0 0 0
## 3023 53 9 11 44 2 0 0 0 0 0 0
## 3024 53 9 11 44 2 0 0 0 0 0 0
## 3025 53 9 11 44 2 0 0 0 0 0 0
## 3026 53 9 11 44 2 0 0 0 0 0 0
## 3027 53 9 11 44 2 0 0 0 0 0 0
## 3028 53 9 11 44 2 0 0 0 0 0 0
## 3029 53 9 11 44 2 0 0 0 0 0 0
## 3030 53 9 11 44 2 0 0 0 0 0 0
## 3031 53 9 11 44 2 0 0 0 0 0 0
## 3032 53 9 11 44 2 0 0 0 0 0 0
## 3033 53 9 11 44 2 0 0 0 0 0 0
## 3034 28 3 8 20 0 2 2 0 0 0 0
## 3035 28 3 8 20 0 2 2 0 0 0 0
## 3036 28 3 8 20 0 2 2 0 0 0 0
## 3037 28 3 8 20 0 2 2 0 0 0 0
## 3038 28 3 8 20 0 2 2 0 0 0 0
## 3039 28 3 8 20 0 2 2 0 0 0 0
## 3040 28 3 8 20 0 2 2 0 0 0 0
## 3041 28 3 8 20 0 2 2 0 0 0 0
## 3042 28 3 8 20 0 2 2 0 0 0 0
## 3043 28 3 8 20 0 2 2 0 0 0 0
## 3044 28 3 8 20 0 2 2 0 0 0 0
## 3045 28 3 8 20 0 2 2 0 0 0 0
## 3046 43 12 13 28 2 0 0 0 0 0 0
## 3047 43 12 13 28 2 0 0 0 0 0 0
## 3048 43 12 13 28 2 0 0 0 0 0 0
## 3049 48 13 14 34 2 0 0 1 0 0 0
## 3050 48 13 14 34 2 0 0 1 0 0 0
## 3051 48 13 14 34 2 0 0 1 0 0 0
## 3052 48 13 14 34 2 0 0 1 0 0 0
## 3053 48 13 14 34 2 0 0 1 0 0 0
## 3054 48 13 14 34 2 0 0 1 0 0 0
## 3055 48 13 14 34 2 0 0 1 0 0 0
## 3056 48 13 14 34 2 0 0 1 0 0 0
## 3057 48 13 14 34 2 0 0 1 0 0 0
## 3058 25 3 5 14 4 0 0 0 0 0 0
## 3059 25 3 5 14 4 0 0 0 0 0 0
## 3060 25 3 5 14 4 0 0 0 0 0 0
## 3061 25 3 5 14 4 0 0 0 0 0 0
## 3062 25 3 5 14 4 0 0 0 0 0 0
## 3063 25 3 5 14 4 0 0 0 0 0 0
## 3064 25 3 5 15 4 0 0 1 0 0 0
## 3065 25 3 5 15 4 0 0 1 0 0 0
## 3066 25 3 5 15 4 0 0 1 0 0 0
## 3067 25 3 5 15 4 0 0 1 0 0 0
## 3068 25 3 5 15 4 0 0 1 0 0 0
## 3069 25 3 5 15 4 0 0 1 0 0 0
## 3070 25 3 5 14 4 0 0 0 0 0 0
## 3071 25 3 5 14 4 0 0 0 0 0 0
## 3072 25 3 5 14 4 0 0 0 0 0 0
## 3073 25 3 5 14 4 0 0 0 0 0 0
## 3074 25 3 5 14 4 0 0 0 0 0 0
## 3075 25 3 5 14 4 0 0 0 0 0 0
## 3076 25 3 5 15 4 0 0 1 0 0 0
## 3077 25 3 5 15 4 0 0 1 0 0 0
## 3078 25 3 5 15 4 0 0 1 0 0 0
## 3079 25 3 5 15 4 0 0 1 0 0 0
## 3080 25 3 5 15 4 0 0 1 0 0 0
## 3081 25 3 5 15 4 0 0 1 0 0 0
## 3082 17 3 5 9 2 0 0 0 0 0 0
## 3083 17 3 5 9 2 0 0 0 0 0 0
## 3084 17 3 5 9 2 0 0 0 0 0 0
## 3085 17 3 5 9 2 0 0 0 0 0 0
## 3086 17 3 5 9 2 0 0 0 0 0 0
## 3087 17 3 5 9 2 0 0 0 0 0 0
## 3088 17 3 5 9 2 0 0 0 0 0 0
## 3089 17 3 5 9 2 0 0 0 0 0 0
## 3090 17 3 5 9 2 0 0 0 0 0 0
## 3091 17 3 5 9 2 0 0 0 0 0 0
## 3092 17 3 5 9 2 0 0 0 0 0 0
## 3093 17 3 5 9 2 0 0 0 0 0 0
## 3094 17 3 5 9 2 0 0 0 0 0 0
## 3095 17 3 5 9 2 0 0 0 0 0 0
## 3096 17 3 5 9 2 0 0 0 0 0 0
## 3097 17 3 5 9 2 0 0 0 0 0 0
## 3098 17 3 5 9 2 0 0 0 0 0 0
## 3099 17 3 5 9 2 0 0 0 0 0 0
## 3100 17 3 5 9 2 0 0 0 0 0 0
## 3101 17 3 5 9 2 0 0 0 0 0 0
## 3102 17 3 5 9 2 0 0 0 0 0 0
## 3103 17 3 5 9 2 0 0 0 0 0 0
## 3104 17 3 5 9 2 0 0 0 0 0 0
## 3105 17 3 5 9 2 0 0 0 0 0 0
## 3106 13 3 5 8 2 0 0 0 0 0 0
## 3107 13 3 5 8 2 0 0 0 0 0 0
## 3108 13 3 5 8 2 0 0 0 0 0 0
## 3109 13 3 5 8 2 0 0 0 0 0 0
## 3110 13 3 5 8 2 0 0 0 0 0 0
## 3111 13 3 5 8 2 0 0 0 0 0 0
## 3112 13 3 5 8 2 0 0 0 0 0 0
## 3113 13 3 5 8 2 0 0 0 0 0 0
## 3114 13 3 5 8 2 0 0 0 0 0 0
## 3115 13 3 5 8 2 0 0 0 0 0 0
## 3116 13 3 5 8 2 0 0 0 0 0 0
## 3117 13 3 5 8 2 0 0 0 0 0 0
## 3118 12 2 4 5 1 0 0 0 0 0 0
## 3119 12 2 4 5 1 0 0 0 0 0 0
## 3120 12 2 4 5 1 0 0 0 0 0 0
## 3121 12 2 4 5 1 0 0 0 0 0 0
## 3122 12 2 4 5 1 0 0 0 0 0 0
## 3123 12 2 4 5 1 0 0 0 0 0 0
## 3124 12 2 4 5 1 0 0 0 0 0 0
## 3125 12 2 4 5 1 0 0 0 0 0 0
## 3126 12 2 4 5 1 0 0 0 0 0 0
## 3127 12 2 4 5 1 0 0 0 0 0 0
## 3128 12 2 4 5 1 0 0 0 0 0 0
## 3129 12 2 4 5 1 0 0 0 0 0 0
## 3130 12 2 4 5 1 0 0 0 0 0 0
## 3131 12 2 4 5 1 0 0 0 0 0 0
## 3132 12 2 4 5 1 0 0 0 0 0 0
## 3133 12 2 4 5 1 0 0 0 0 0 0
## 3134 12 2 4 5 1 0 0 0 0 0 0
## 3135 12 2 4 5 1 0 0 0 0 0 0
## 3136 12 2 4 5 1 0 0 0 0 0 0
## 3137 12 2 4 5 1 0 0 0 0 0 0
## 3138 12 2 4 5 1 0 0 0 0 0 0
## 3139 12 2 4 5 1 0 0 0 0 0 0
## 3140 12 2 4 5 1 0 0 0 0 0 0
## 3141 12 2 4 5 1 0 0 0 0 0 0
## 3142 57 14 15 43 2 0 0 0 0 0 0
## 3143 57 14 15 43 2 0 0 0 0 0 0
## 3144 57 14 15 43 2 0 0 0 0 0 0
## 3145 57 14 15 43 2 0 0 0 0 0 0
## 3146 57 14 15 43 2 0 0 0 0 0 0
## 3147 57 14 15 43 2 0 0 0 0 0 0
## 3148 57 14 15 43 2 0 0 0 0 0 0
## 3149 57 14 15 43 2 0 0 0 0 0 0
## 3150 57 14 15 43 2 0 0 0 0 0 0
## 3151 57 14 15 43 2 0 0 0 0 0 0
## 3152 48 11 12 29 2 0 0 0 0 0 0
## 3153 48 11 12 29 2 0 0 0 0 0 0
## 3154 57 14 15 43 2 0 0 0 0 0 0
## 3155 57 14 15 43 2 0 0 0 0 0 0
## 3156 57 14 15 43 2 0 0 0 0 0 0
## 3157 57 14 15 43 2 0 0 0 0 0 0
## 3158 57 14 15 43 2 0 0 0 0 0 0
## 3159 57 14 15 43 2 0 0 0 0 0 0
## 3160 57 14 15 43 2 0 0 0 0 0 0
## 3161 57 14 15 43 2 0 0 0 0 0 0
## 3162 57 14 15 43 2 0 0 0 0 0 0
## 3163 57 14 15 43 2 0 0 0 0 0 0
## 3164 48 11 12 29 2 0 0 0 0 0 0
## 3165 48 11 12 29 2 0 0 0 0 0 0
## 3166 57 14 15 43 2 0 0 0 0 0 0
## 3167 57 14 15 43 2 0 0 0 0 0 0
## 3168 57 14 15 43 2 0 0 0 0 0 0
## 3169 57 14 15 43 2 0 0 0 0 0 0
## 3170 57 14 15 43 2 0 0 0 0 0 0
## 3171 57 14 15 43 2 0 0 0 0 0 0
## 3172 57 14 15 43 2 0 0 0 0 0 0
## 3173 57 14 15 43 2 0 0 0 0 0 0
## 3174 57 14 15 43 2 0 0 0 0 0 0
## 3175 57 14 15 43 2 0 0 0 0 0 0
## 3176 48 11 12 29 2 0 0 0 0 0 0
## 3177 48 11 12 29 2 0 0 0 0 0 0
## 3178 30 5 5 16 2 0 0 0 0 0 0
## 3179 30 5 5 16 2 0 0 0 0 0 0
## 3180 30 5 5 16 2 0 0 0 0 0 0
## 3181 30 5 5 16 2 0 0 0 0 0 0
## 3182 30 5 5 16 2 0 0 0 0 0 0
## 3183 30 5 5 16 2 0 0 0 0 0 0
## 3184 30 5 5 16 2 0 0 0 0 0 0
## 3185 30 5 5 16 2 0 0 0 0 0 0
## 3186 30 5 5 16 2 0 0 0 0 0 0
## 3187 30 5 5 16 2 0 0 0 0 0 0
## 3188 30 5 5 16 2 0 0 0 0 0 0
## 3189 30 5 5 16 2 0 0 0 0 0 0
## 3190 30 5 12 14 3 0 0 0 0 0 0
## 3191 30 5 12 14 3 0 0 0 0 0 0
## 3192 30 5 12 15 3 0 0 0 0 0 0
## 3193 30 5 12 15 3 0 0 0 0 0 0
## 3194 30 5 12 15 3 0 0 0 0 0 0
## 3195 30 5 12 15 3 0 0 0 0 0 0
## 3196 30 5 12 15 3 0 0 0 0 0 0
## 3197 30 5 12 15 3 0 0 0 0 0 0
## 3198 30 5 12 15 3 0 0 0 0 0 0
## 3199 30 5 12 15 3 0 0 0 0 0 0
## 3200 30 5 12 15 3 0 0 0 0 0 0
## 3201 30 5 12 15 3 0 0 0 0 0 0
## 3202 30 5 12 14 3 0 0 0 0 0 0
## 3203 30 5 12 14 3 0 0 0 0 0 0
## 3204 30 5 12 15 3 0 0 0 0 0 0
## 3205 30 5 12 15 3 0 0 0 0 0 0
## 3206 30 5 12 15 3 0 0 0 0 0 0
## 3207 30 5 12 15 3 0 0 0 0 0 0
## 3208 30 5 12 15 3 0 0 0 0 0 0
## 3209 30 5 12 15 3 0 0 0 0 0 0
## 3210 30 5 12 15 3 0 0 0 0 0 0
## 3211 30 5 12 15 3 0 0 0 0 0 0
## 3212 30 5 12 15 3 0 0 0 0 0 0
## 3213 30 5 12 15 3 0 0 0 0 0 0
## 3214 8 1 1 5 1 0 0 0 0 0 0
## 3215 8 1 1 5 1 0 0 0 0 0 0
## 3216 8 1 1 5 1 0 0 0 0 0 0
## 3217 8 1 1 5 1 0 0 0 0 0 0
## 3218 8 1 1 5 1 0 0 0 0 0 0
## 3219 8 1 1 5 1 0 0 0 0 0 0
## 3220 8 1 1 5 1 0 0 0 0 0 0
## 3221 8 1 1 5 1 0 0 0 0 0 0
## 3222 8 1 1 5 1 0 0 0 0 0 0
## 3223 8 1 1 5 1 0 0 0 0 0 0
## 3224 8 1 1 5 1 0 0 0 0 0 0
## 3225 8 1 1 5 1 0 0 0 0 0 0
## 3226 30 9 10 19 2 0 4 0 0 0 0
## 3227 30 9 10 19 2 0 4 0 0 0 0
## 3228 30 9 10 19 2 0 4 0 0 0 0
## 3229 30 9 10 19 2 0 4 0 0 0 0
## 3230 30 9 10 19 2 0 4 0 0 0 0
## 3231 30 9 10 19 2 0 4 0 0 0 0
## 3232 30 9 10 19 2 0 4 0 0 0 0
## 3233 30 9 10 19 2 0 4 0 0 0 0
## 3234 30 9 10 19 2 0 4 0 0 0 0
## 3235 30 9 10 19 2 0 4 0 0 0 0
## 3236 30 9 10 19 2 0 4 0 0 0 0
## 3237 30 9 10 19 2 0 4 0 0 0 0
## 3238 30 9 10 19 2 0 4 0 0 0 0
## 3239 30 9 10 19 2 0 4 0 0 0 0
## 3240 30 9 10 19 2 0 4 0 0 0 0
## 3241 30 9 10 19 2 0 4 0 0 0 0
## 3242 30 9 10 19 2 0 4 0 0 0 0
## 3243 30 9 10 19 2 0 4 0 0 0 0
## 3244 30 9 10 19 2 0 4 0 0 0 0
## 3245 30 9 10 19 2 0 4 0 0 0 0
## 3246 30 9 10 19 2 0 4 0 0 0 0
## 3247 30 9 10 19 2 0 4 0 0 0 0
## 3248 30 9 10 19 2 0 4 0 0 0 0
## 3249 30 9 10 19 2 0 4 0 0 0 0
## 3250 112 19 23 70 2 2 0 4 0 0 0
## 3251 112 19 23 70 2 2 0 4 0 0 0
## 3252 112 19 23 70 2 2 0 4 0 0 0
## 3253 130 20 25 85 2 2 0 4 0 0 0
## 3254 130 20 25 85 2 2 0 4 0 0 0
## 3255 130 20 25 85 2 2 0 4 0 0 0
## 3256 130 20 25 85 2 2 0 4 0 0 0
## 3257 130 20 25 85 2 2 0 4 0 0 0
## 3258 130 20 25 85 2 2 0 4 0 0 0
## 3259 130 20 25 85 2 2 0 4 0 0 0
## 3260 130 20 25 85 2 2 0 4 0 0 0
## 3261 130 20 25 85 2 2 0 4 0 0 0
## 3262 18 5 6 11 2 0 0 0 0 0 0
## 3263 18 5 6 11 2 0 0 0 0 0 0
## 3264 18 5 6 11 2 0 0 0 0 0 0
## 3265 18 5 6 11 2 0 0 0 0 0 0
## 3266 18 5 6 11 2 0 0 0 0 0 0
## 3267 18 5 6 11 2 0 0 0 0 0 0
## 3268 18 5 6 11 2 0 0 0 0 0 0
## 3269 18 5 6 11 2 0 0 0 0 0 0
## 3270 18 5 6 11 2 0 0 0 0 0 0
## 3271 18 5 6 11 2 0 0 0 0 0 0
## 3272 18 5 6 11 2 0 0 0 0 0 0
## 3273 18 5 6 11 2 0 0 0 0 0 0
## 3274 18 5 6 11 2 0 0 0 0 0 0
## 3275 18 5 6 11 2 0 0 0 0 0 0
## 3276 18 5 6 11 2 0 0 0 0 0 0
## 3277 18 5 6 11 2 0 0 0 0 0 0
## 3278 18 5 6 11 2 0 0 0 0 0 0
## 3279 18 5 6 11 2 0 0 0 0 0 0
## 3280 18 5 6 11 2 0 0 0 0 0 0
## 3281 18 5 6 11 2 0 0 0 0 0 0
## 3282 18 5 6 11 2 0 0 0 0 0 0
## 3283 18 5 6 11 2 0 0 0 0 0 0
## 3284 18 5 6 11 2 0 0 0 0 0 0
## 3285 18 5 6 11 2 0 0 0 0 0 0
## 3286 18 5 6 11 2 0 0 0 0 0 0
## 3287 18 5 6 11 2 0 0 0 0 0 0
## 3288 18 5 6 11 2 0 0 0 0 0 0
## 3289 18 5 6 11 2 0 0 0 0 0 0
## 3290 18 5 6 11 2 0 0 0 0 0 0
## 3291 18 5 6 11 2 0 0 0 0 0 0
## 3292 18 5 6 11 2 0 0 0 0 0 0
## 3293 18 5 6 11 2 0 0 0 0 0 0
## 3294 18 5 6 11 2 0 0 0 0 0 0
## 3295 18 5 6 11 2 0 0 0 0 0 0
## 3296 18 5 6 11 2 0 0 0 0 0 0
## 3297 18 5 6 11 2 0 0 0 0 0 0
## 3298 18 5 6 11 2 0 0 0 0 0 0
## 3299 18 5 6 11 2 0 0 0 0 0 0
## 3300 18 5 6 11 2 0 0 0 0 0 0
## 3301 18 5 6 11 2 0 0 0 0 0 0
## 3302 18 5 6 11 2 0 0 0 0 0 0
## 3303 18 5 6 11 2 0 0 0 0 0 0
## 3304 18 5 6 11 2 0 0 0 0 0 0
## 3305 18 5 6 11 2 0 0 0 0 0 0
## 3306 18 5 6 11 2 0 0 0 0 0 0
## 3307 18 5 6 11 2 0 0 0 0 0 0
## 3308 18 5 6 11 2 0 0 0 0 0 0
## 3309 18 5 6 11 2 0 0 0 0 0 0
## 3310 47 7 8 18 2 0 0 0 0 0 0
## 3311 47 7 8 18 2 0 0 0 0 0 0
## 3312 47 7 8 18 2 0 0 0 0 0 0
## 3313 47 7 8 18 2 0 0 0 0 0 0
## 3314 47 7 8 18 2 0 0 0 0 0 0
## 3315 47 7 8 18 2 0 0 0 0 0 0
## 3316 47 7 8 18 2 0 0 0 0 0 0
## 3317 47 7 8 18 2 0 0 0 0 0 0
## 3318 47 7 8 18 2 0 0 0 0 0 0
## 3319 47 7 8 18 2 0 0 0 0 0 0
## 3320 47 7 8 18 2 0 0 0 0 0 0
## 3321 47 7 8 18 2 0 0 0 0 0 0
## 3322 13 2 2 12 2 0 0 0 0 0 0
## 3323 13 2 2 12 2 0 0 0 0 0 0
## 3324 13 2 2 12 2 0 0 0 0 0 0
## 3325 13 2 2 12 2 0 0 0 0 0 0
## 3326 13 2 2 12 2 0 0 0 0 0 0
## 3327 13 2 2 12 2 0 0 0 0 0 0
## 3328 13 2 2 12 2 0 0 0 0 0 0
## 3329 13 2 2 12 2 0 0 0 0 0 0
## 3330 13 2 2 12 2 0 0 0 0 0 0
## 3331 13 2 2 12 2 0 0 0 0 0 0
## 3332 13 2 2 12 2 0 0 0 0 0 0
## 3333 13 2 2 12 2 0 0 0 0 0 0
## 3334 9 1 1 6 1 0 0 0 0 0 0
## 3335 9 1 1 6 1 0 0 0 0 0 0
## 3336 9 1 1 6 1 0 0 0 0 0 0
## 3337 9 1 1 6 1 0 0 0 0 0 0
## 3338 9 1 1 6 1 0 0 0 0 0 0
## 3339 9 1 1 6 1 0 0 0 0 0 0
## 3340 9 1 1 6 1 0 0 0 0 0 0
## 3341 9 1 1 6 1 0 0 0 0 0 0
## 3342 9 1 1 6 1 0 0 0 0 0 0
## 3343 9 1 1 6 1 0 0 0 0 0 0
## 3344 9 1 1 6 1 0 0 0 0 0 0
## 3345 9 1 1 6 1 0 0 0 0 0 0
## 3346 11 3 3 6 0 0 0 0 0 0 0
## 3347 11 3 3 6 0 0 0 0 0 0 0
## 3348 11 3 3 7 0 0 0 0 0 0 0
## 3349 11 3 3 7 0 0 0 0 0 0 0
## 3350 11 3 3 7 0 0 0 0 0 0 0
## 3351 11 3 3 7 0 0 0 0 0 0 0
## 3352 11 3 3 7 0 0 0 0 0 0 0
## 3353 11 3 3 7 0 0 0 0 0 0 0
## 3354 11 3 3 7 0 0 0 0 0 0 0
## 3355 11 3 3 7 0 0 0 0 0 0 0
## 3356 11 3 3 7 0 0 0 0 0 0 0
## 3357 11 3 3 7 0 0 0 0 0 0 0
## 3358 24 5 6 17 2 0 1 0 0 0 0
## 3359 24 5 6 17 2 0 1 0 0 0 0
## 3360 24 5 6 17 2 0 1 0 0 0 0
## 3361 42 8 11 29 2 0 1 2 0 0 0
## 3362 42 8 11 29 2 0 1 2 0 0 0
## 3363 42 8 11 29 2 0 1 2 0 0 0
## 3364 42 8 11 29 2 0 1 2 0 0 0
## 3365 42 8 11 29 2 0 1 2 0 0 0
## 3366 42 8 11 29 2 0 1 2 0 0 0
## 3367 42 8 11 29 2 0 1 2 0 0 0
## 3368 42 8 11 29 2 0 1 2 0 0 0
## 3369 42 8 11 29 2 0 1 2 0 0 0
## 3370 47 7 8 41 5 2 1 0 0 0 0
## 3371 47 7 8 41 5 2 1 0 0 0 0
## 3372 47 7 8 41 5 2 1 0 0 0 0
## 3373 47 7 8 41 5 2 1 0 0 0 0
## 3374 47 7 8 41 5 2 1 0 0 0 0
## 3375 47 7 8 41 5 2 1 0 0 0 0
## 3376 47 7 8 41 5 2 1 0 0 0 0
## 3377 47 7 8 41 5 2 1 0 0 0 0
## 3378 47 7 8 41 5 2 1 0 0 0 0
## 3379 47 7 8 41 5 2 1 0 0 0 0
## 3380 47 7 8 41 5 2 1 0 0 0 0
## 3381 47 7 8 41 5 2 1 0 0 0 0
## 3382 17 3 4 9 2 0 0 0 0 0 0
## 3383 17 3 4 9 2 0 0 0 0 0 0
## 3384 17 3 4 9 2 0 0 0 0 0 0
## 3385 17 3 4 9 2 0 0 0 0 0 0
## 3386 17 3 4 9 2 0 0 0 0 0 0
## 3387 17 3 4 9 2 0 0 0 0 0 0
## 3388 17 3 4 9 2 0 0 0 0 0 0
## 3389 17 3 4 9 2 0 0 0 0 0 0
## 3390 17 3 4 9 2 0 0 0 0 0 0
## 3391 17 3 4 9 2 0 0 0 0 0 0
## 3392 17 3 4 9 2 0 0 0 0 0 0
## 3393 17 3 4 9 2 0 0 0 0 0 0
## 3394 16 3 4 10 2 0 0 0 0 0 0
## 3395 16 3 4 10 2 0 0 0 0 0 0
## 3396 16 3 4 10 2 0 0 0 0 0 0
## 3397 16 3 4 10 2 0 0 0 0 0 0
## 3398 16 3 4 10 2 0 0 0 0 0 0
## 3399 16 3 4 10 2 0 0 0 0 0 0
## 3400 16 3 4 10 2 0 0 0 0 0 0
## 3401 16 3 4 10 2 0 0 0 0 0 0
## 3402 15 3 4 14 2 0 0 0 0 0 0
## 3403 15 3 4 14 2 0 0 0 0 0 0
## 3404 78 14 15 84 2 0 0 0 0 0 0
## 3405 78 14 15 84 2 0 0 0 0 0 0
## 3406 78 14 15 84 2 0 0 0 0 0 0
## 3407 78 14 15 84 2 0 0 0 0 0 0
## 3408 78 14 15 84 2 0 0 0 0 0 0
## 3409 78 14 15 84 2 0 0 0 0 0 0
## 3410 78 14 15 84 2 0 0 0 0 0 0
## 3411 78 14 15 84 2 0 0 0 0 0 0
## 3412 78 14 15 84 2 0 0 0 0 0 0
## 3413 78 14 15 84 2 0 0 0 0 0 0
## 3414 78 14 15 84 2 0 0 0 0 0 0
## 3415 78 14 15 84 2 0 0 0 0 0 0
## 3416 11 2 3 5 2 0 0 0 0 0 0
## 3417 11 2 3 5 2 0 0 0 0 0 0
## 3418 11 2 3 5 2 0 0 0 0 0 0
## 3419 11 2 3 5 2 0 0 0 0 0 0
## 3420 11 2 3 5 2 0 0 0 0 0 0
## 3421 11 2 3 5 2 0 0 0 0 0 0
## 3422 11 2 3 5 2 0 0 0 0 0 0
## 3423 11 2 3 5 2 0 0 0 0 0 0
## 3424 11 2 3 5 2 0 0 0 0 0 0
## 3425 11 2 3 5 2 0 0 0 0 0 0
## 3426 9 2 3 4 1 0 0 0 0 0 0
## 3427 9 2 3 4 1 0 0 0 0 0 0
## 3428 9 2 3 4 1 0 0 0 0 0 0
## 3429 9 2 3 4 1 0 0 0 0 0 0
## 3430 9 2 3 4 1 0 0 0 0 0 0
## 3431 9 2 3 4 1 0 0 0 0 0 0
## 3432 9 2 3 4 1 0 0 0 0 0 0
## 3433 9 2 3 4 1 0 0 0 0 0 0
## 3434 9 2 3 4 1 0 0 0 0 0 0
## 3435 9 2 3 4 1 0 0 0 0 0 0
## 3436 9 2 3 4 1 0 0 0 0 0 0
## 3437 9 2 3 4 1 0 0 0 0 0 0
## 3438 9 2 3 4 1 0 0 0 0 0 0
## 3439 9 2 3 4 1 0 0 0 0 0 0
## 3440 9 2 3 4 1 0 0 0 0 0 0
## 3441 9 2 3 4 1 0 0 0 0 0 0
## 3442 9 2 3 4 1 0 0 0 0 0 0
## 3443 9 2 3 4 1 0 0 0 0 0 0
## 3444 9 2 3 4 1 0 0 0 0 0 0
## 3445 9 2 3 4 1 0 0 0 0 0 0
## 3446 9 2 3 4 1 0 0 0 0 0 0
## 3447 9 2 3 4 1 0 0 0 0 0 0
## 3448 9 2 3 4 1 0 0 0 0 0 0
## 3449 9 2 3 4 1 0 0 0 0 0 0
## 3450 10 2 3 4 1 0 0 0 0 0 0
## 3451 10 2 3 4 1 0 0 0 0 0 0
## 3452 10 2 3 4 1 0 0 0 0 0 0
## 3453 10 2 3 4 1 0 0 0 0 0 0
## 3454 10 2 3 4 1 0 0 0 0 0 0
## 3455 10 2 3 4 1 0 0 0 0 0 0
## 3456 10 2 3 4 1 0 0 0 0 0 0
## 3457 10 2 3 4 1 0 0 0 0 0 0
## 3458 9 2 3 8 1 0 0 0 0 0 0
## 3459 9 2 3 8 1 0 0 0 0 0 0
## 3460 10 2 3 4 1 0 0 0 0 0 0
## 3461 10 2 3 4 1 0 0 0 0 0 0
## 3462 10 2 3 4 1 0 0 0 0 0 0
## 3463 10 2 3 4 1 0 0 0 0 0 0
## 3464 10 2 3 4 1 0 0 0 0 0 0
## 3465 10 2 3 4 1 0 0 0 0 0 0
## 3466 10 2 3 4 1 0 0 0 0 0 0
## 3467 10 2 3 4 1 0 0 0 0 0 0
## 3468 9 2 3 8 1 0 0 0 0 0 0
## 3469 9 2 3 8 1 0 0 0 0 0 0
## 3470 134 30 31 183 2 0 0 36 0 0 0
## 3471 134 30 31 183 2 0 0 36 0 0 0
## 3472 134 30 31 183 2 0 0 36 0 0 0
## 3473 134 30 31 183 2 0 0 36 0 0 0
## 3474 134 30 31 183 2 0 0 36 0 0 0
## 3475 134 30 31 183 2 0 0 36 0 0 0
## 3476 134 30 31 183 2 0 0 36 0 0 0
## 3477 134 30 31 183 2 0 0 36 0 0 0
## 3478 134 30 31 183 2 0 0 36 0 0 0
## 3479 134 30 31 183 2 0 0 36 0 0 0
## 3480 134 30 31 183 2 0 0 36 0 0 0
## 3481 134 30 31 183 2 0 0 36 0 0 0
## 3482 49 6 9 23 2 0 0 0 0 0 0
## 3483 49 6 9 23 2 0 0 0 0 0 0
## 3484 49 6 9 23 2 0 0 0 0 0 0
## 3485 49 6 9 23 2 0 0 0 0 0 0
## 3486 49 6 9 23 2 0 0 0 0 0 0
## 3487 49 6 9 23 2 0 0 0 0 0 0
## 3488 49 6 9 23 2 0 0 0 0 0 0
## 3489 49 6 9 23 2 0 0 0 0 0 0
## 3490 49 6 9 23 2 0 0 0 0 0 0
## 3491 49 6 9 23 2 0 0 0 0 0 0
## 3492 49 6 9 23 2 0 0 0 0 0 0
## 3493 49 6 9 23 2 0 0 0 0 0 0
## 3494 27 5 6 13 2 0 0 0 0 0 0
## 3495 27 5 6 13 2 0 0 0 0 0 0
## 3496 27 5 6 13 2 0 0 0 0 0 0
## 3497 27 5 6 13 2 0 0 0 0 0 0
## 3498 27 5 6 13 2 0 0 0 0 0 0
## 3499 27 5 6 13 2 0 0 0 0 0 0
## 3500 27 5 6 13 2 0 0 0 0 0 0
## 3501 27 5 6 13 2 0 0 0 0 0 0
## 3502 27 5 6 13 2 0 0 0 0 0 0
## 3503 27 5 6 13 2 0 0 0 0 0 0
## 3504 26 5 6 17 2 0 0 0 0 0 0
## 3505 26 5 6 17 2 0 0 0 0 0 0
## 3506 69 18 23 28 2 0 0 0 0 0 0
## 3507 69 18 23 28 2 0 0 0 0 0 0
## 3508 60 18 20 30 2 0 0 0 2 0 0
## 3509 60 18 20 30 2 0 0 0 2 0 0
## 3510 60 18 20 30 2 0 0 0 2 0 0
## 3511 60 18 20 30 2 0 0 0 2 0 0
## 3512 60 18 20 30 2 0 0 0 2 0 0
## 3513 60 18 20 30 2 0 0 0 2 0 0
## 3514 60 18 20 30 2 0 0 0 2 0 0
## 3515 60 18 20 30 2 0 0 0 2 0 0
## 3516 60 18 20 30 2 0 0 0 2 0 0
## 3517 60 18 20 30 2 0 0 0 2 0 0
## 3518 95 12 21 47 18 9 9 1 0 0 0
## 3519 95 12 21 47 18 9 9 1 0 0 0
## 3520 95 12 21 47 18 9 9 1 0 0 0
## 3521 95 12 21 47 18 9 9 1 0 0 0
## 3522 95 12 21 47 18 9 9 1 0 0 0
## 3523 95 12 21 47 18 9 9 1 0 0 0
## 3524 95 12 21 47 18 9 9 1 0 0 0
## 3525 95 12 21 47 18 9 9 1 0 0 0
## 3526 95 12 21 47 18 9 9 1 0 0 0
## 3527 95 12 21 47 18 9 9 1 0 0 0
## 3528 95 12 21 47 18 9 9 1 0 0 0
## 3529 95 12 21 47 18 9 9 1 0 0 0
## 3530 95 12 21 47 18 9 9 1 0 0 0
## 3531 95 12 21 47 18 9 9 1 0 0 0
## 3532 95 12 21 47 18 9 9 1 0 0 0
## 3533 95 12 21 47 18 9 9 1 0 0 0
## 3534 95 12 21 47 18 9 9 1 0 0 0
## 3535 95 12 21 47 18 9 9 1 0 0 0
## 3536 95 12 21 47 18 9 9 1 0 0 0
## 3537 95 12 21 47 18 9 9 1 0 0 0
## 3538 95 12 21 47 18 9 9 1 0 0 0
## 3539 95 12 21 47 18 9 9 1 0 0 0
## 3540 95 12 21 47 18 9 9 1 0 0 0
## 3541 95 12 21 47 18 9 9 1 0 0 0
## 3542 204 31 39 143 3 3 14 0 0 0 0
## 3543 204 31 39 143 3 3 14 0 0 0 0
## 3544 204 31 39 143 3 3 14 0 0 0 0
## 3545 204 31 39 143 3 3 14 0 0 0 0
## 3546 204 31 39 143 3 3 14 0 0 0 0
## 3547 204 31 39 143 3 3 14 0 0 0 0
## 3548 204 31 39 143 3 3 14 0 0 0 0
## 3549 204 31 39 143 3 3 14 0 0 0 0
## 3550 204 31 39 143 3 3 14 0 0 0 0
## 3551 204 31 39 143 3 3 14 0 0 0 0
## 3552 204 31 39 143 3 3 14 0 0 0 0
## 3553 204 31 39 143 3 3 14 0 0 0 0
## 3554 34 6 12 18 0 2 0 7 0 0 0
## 3555 34 6 12 18 0 2 0 7 0 0 0
## 3556 34 6 12 18 0 2 0 7 0 0 0
## 3557 33 6 12 18 0 2 0 7 0 0 0
## 3558 33 6 12 18 0 2 0 7 0 0 0
## 3559 33 6 12 18 0 2 0 7 0 0 0
## 3560 33 6 12 18 0 2 0 7 0 0 0
## 3561 33 6 12 18 0 2 0 7 0 0 0
## 3562 33 6 12 18 0 2 0 7 0 0 0
## 3563 33 6 12 18 0 2 0 7 0 0 0
## 3564 33 6 12 18 0 2 0 7 0 0 0
## 3565 33 6 12 18 0 2 0 7 0 0 0
## 3566 18 2 2 12 3 0 0 0 0 0 0
## 3567 18 2 2 12 3 0 0 0 0 0 0
## 3568 18 2 2 12 3 0 0 0 0 0 0
## 3569 18 2 2 12 3 0 0 0 0 0 0
## 3570 18 2 2 12 3 0 0 0 0 0 0
## 3571 18 2 2 12 3 0 0 0 0 0 0
## 3572 18 2 2 12 3 0 0 0 0 0 0
## 3573 18 2 2 12 3 0 0 0 0 0 0
## 3574 18 2 2 12 3 0 0 0 0 0 0
## 3575 18 2 2 12 3 0 0 0 0 0 0
## 3576 18 2 2 12 3 0 0 0 0 0 0
## 3577 18 2 2 12 3 0 0 0 0 0 0
## 3578 199 21 46 135 2 2 2 5 0 0 0
## 3579 199 21 46 135 2 2 2 5 0 0 0
## 3580 199 21 46 135 2 2 2 5 0 0 0
## 3581 199 21 46 135 2 2 2 5 0 0 0
## 3582 199 21 46 135 2 2 2 5 0 0 0
## 3583 199 21 46 135 2 2 2 5 0 0 0
## 3584 199 21 46 135 2 2 2 5 0 0 0
## 3585 199 21 46 135 2 2 2 5 0 0 0
## 3586 199 21 46 135 2 2 2 5 0 0 0
## 3587 199 21 46 135 2 2 2 5 0 0 0
## 3588 199 21 46 135 2 2 2 5 0 0 0
## 3589 199 21 46 135 2 2 2 5 0 0 0
## 3590 61 6 17 18 1 1 0 0 0 2 1
## 3591 61 6 17 18 1 1 0 0 0 2 1
## 3592 61 6 17 18 1 1 0 0 0 2 1
## 3593 62 6 17 18 1 1 0 0 0 2 1
## 3594 67 6 17 18 1 1 0 0 0 2 1
## 3595 87 6 17 18 1 1 0 0 0 2 1
## 3596 101 6 17 18 1 1 0 0 0 2 1
## 3597 101 6 17 18 1 1 0 0 0 2 1
## 3598 101 6 17 18 1 1 0 0 0 2 1
## 3599 117 6 17 22 1 1 0 0 0 2 1
## 3600 124 6 17 22 1 1 0 0 0 2 1
## 3601 126 6 17 22 1 1 0 0 0 2 1
## 3602 61 6 17 18 1 1 0 0 0 2 1
## 3603 61 6 17 18 1 1 0 0 0 2 1
## 3604 61 6 17 18 1 1 0 0 0 2 1
## 3605 62 6 17 18 1 1 0 0 0 2 1
## 3606 67 6 17 18 1 1 0 0 0 2 1
## 3607 87 6 17 18 1 1 0 0 0 2 1
## 3608 101 6 17 18 1 1 0 0 0 2 1
## 3609 101 6 17 18 1 1 0 0 0 2 1
## 3610 101 6 17 18 1 1 0 0 0 2 1
## 3611 117 6 17 22 1 1 0 0 0 2 1
## 3612 124 6 17 22 1 1 0 0 0 2 1
## 3613 126 6 17 22 1 1 0 0 0 2 1
## 3614 30 4 12 9 0 2 0 0 0 0 0
## 3615 30 4 12 9 0 2 0 0 0 0 0
## 3616 30 4 12 9 0 2 0 0 0 0 0
## 3617 30 4 12 9 0 2 0 0 0 0 0
## 3618 30 4 12 9 0 2 0 0 0 0 0
## 3619 30 4 12 9 0 2 0 0 0 0 0
## 3620 30 4 12 9 0 2 0 0 0 0 0
## 3621 30 4 12 9 0 2 0 0 0 0 0
## 3622 30 4 12 9 0 2 0 0 0 0 0
## 3623 30 4 12 9 0 2 0 0 0 0 0
## 3624 30 4 12 9 0 2 0 0 0 0 0
## 3625 30 4 12 9 0 2 0 0 0 0 0
## 3626 30 4 12 9 0 2 0 0 0 0 0
## 3627 30 4 12 9 0 2 0 0 0 0 0
## 3628 10 1 2 7 3 1 0 0 0 0 0
## 3629 10 1 2 7 3 1 0 0 0 0 0
## 3630 10 1 2 7 3 1 0 0 0 0 0
## 3631 10 1 2 7 3 1 0 0 0 0 0
## 3632 10 1 2 7 3 1 0 0 0 0 0
## 3633 10 1 2 7 3 1 0 0 0 0 0
## 3634 10 1 2 7 3 1 0 0 0 0 0
## 3635 10 1 2 7 3 1 0 0 0 0 0
## 3636 10 1 2 7 3 1 0 0 0 0 0
## 3637 10 1 2 7 3 1 0 0 0 0 0
## 3638 10 1 2 7 3 1 0 0 0 0 0
## 3639 10 1 2 7 3 1 0 0 0 0 0
## 3640 10 1 2 7 3 1 0 0 0 0 0
## 3641 10 1 2 7 3 1 0 0 0 0 0
## 3642 6 1 2 4 1 0 0 0 0 0 0
## 3643 6 1 2 4 1 0 0 0 0 0 0
## 3644 6 1 2 4 1 0 0 0 0 0 0
## 3645 6 1 2 4 1 0 0 0 0 0 0
## 3646 6 1 2 4 1 0 0 0 0 0 0
## 3647 6 1 2 4 1 0 0 0 0 0 0
## 3648 6 1 2 4 1 0 0 0 0 0 0
## 3649 6 1 2 4 1 0 0 0 0 0 0
## 3650 6 1 2 4 1 0 0 0 0 0 0
## 3651 6 1 2 4 1 0 0 0 0 0 0
## 3652 6 1 2 4 1 0 0 0 0 0 0
## 3653 6 1 2 4 1 0 0 0 0 0 0
## 3654 30 5 6 21 2 0 0 0 0 0 0
## 3655 30 5 6 21 2 0 0 0 0 0 0
## 3656 30 5 6 21 2 0 0 0 0 0 0
## 3657 30 5 6 21 2 0 0 0 0 0 0
## 3658 30 5 6 21 2 0 0 0 0 0 0
## 3659 30 5 6 21 2 0 0 0 0 0 0
## 3660 30 5 6 21 2 0 0 0 0 0 0
## 3661 30 5 6 21 2 0 0 0 0 0 0
## 3662 30 5 6 21 2 0 0 0 0 0 0
## 3663 30 5 6 21 2 0 0 0 0 0 0
## 3664 30 5 6 21 2 0 0 0 0 0 0
## 3665 30 5 6 21 2 0 0 0 0 0 0
## 3666 30 5 6 21 2 0 0 0 0 0 0
## 3667 30 5 6 21 2 0 0 0 0 0 0
## 3668 30 5 6 21 2 0 0 0 0 0 0
## 3669 30 5 6 21 2 0 0 0 0 0 0
## 3670 30 5 6 21 2 0 0 0 0 0 0
## 3671 30 5 6 21 2 0 0 0 0 0 0
## 3672 30 5 6 21 2 0 0 0 0 0 0
## 3673 30 5 6 21 2 0 0 0 0 0 0
## 3674 30 5 6 21 2 0 0 0 0 0 0
## 3675 30 5 6 21 2 0 0 0 0 0 0
## 3676 30 5 6 21 2 0 0 0 0 0 0
## 3677 30 5 6 21 2 0 0 0 0 0 0
## 3678 64 11 23 53 2 0 0 0 0 0 0
## 3679 64 11 23 53 2 0 0 0 0 0 0
## 3680 64 11 23 53 2 0 0 0 0 0 0
## 3681 64 11 23 53 2 0 0 0 0 0 0
## 3682 64 11 23 53 2 0 0 0 0 0 0
## 3683 64 11 23 53 2 0 0 0 0 0 0
## 3684 64 11 23 53 2 0 0 0 0 0 0
## 3685 64 11 23 53 2 0 0 0 0 0 0
## 3686 64 11 23 53 2 0 0 0 0 0 0
## 3687 64 11 23 53 2 0 0 0 0 0 0
## 3688 64 11 23 53 2 0 0 0 0 0 0
## 3689 64 11 23 53 2 0 0 0 0 0 0
## 3690 64 11 23 53 2 0 0 0 0 0 0
## 3691 64 11 23 53 2 0 0 0 0 0 0
## 3692 64 11 23 53 2 0 0 0 0 0 0
## 3693 64 11 23 53 2 0 0 0 0 0 0
## 3694 64 11 23 53 2 0 0 0 0 0 0
## 3695 64 11 23 53 2 0 0 0 0 0 0
## 3696 64 11 23 53 2 0 0 0 0 0 0
## 3697 64 11 23 53 2 0 0 0 0 0 0
## 3698 64 11 23 53 2 0 0 0 0 0 0
## 3699 64 11 23 53 2 0 0 0 0 0 0
## 3700 64 11 23 53 2 0 0 0 0 0 0
## 3701 64 11 23 53 2 0 0 0 0 0 0
## 3702 7 1 1 7 1 0 0 0 0 0 0
## 3703 7 1 1 7 1 0 0 0 0 0 0
## 3704 7 1 1 7 1 0 0 0 0 0 0
## 3705 7 1 1 7 1 0 0 0 0 0 0
## 3706 7 1 1 7 1 0 0 0 0 0 0
## 3707 7 1 1 7 1 0 0 0 0 0 0
## 3708 7 1 1 7 1 0 0 0 0 0 0
## 3709 7 1 1 7 1 0 0 0 0 0 0
## 3710 7 1 1 7 1 0 0 0 0 0 0
## 3711 7 1 1 7 1 0 0 0 0 0 0
## 3712 7 1 1 7 1 0 0 0 0 0 0
## 3713 7 1 1 7 1 0 0 0 0 0 0
## 3714 7 1 1 7 1 0 0 0 0 0 0
## 3715 7 1 1 7 1 0 0 0 0 0 0
## 3716 7 1 1 7 1 0 0 0 0 0 0
## 3717 7 1 1 7 1 0 0 0 0 0 0
## 3718 7 1 1 7 1 0 0 0 0 0 0
## 3719 7 1 1 7 1 0 0 0 0 0 0
## 3720 7 1 1 7 1 0 0 0 0 0 0
## 3721 7 1 1 7 1 0 0 0 0 0 0
## 3722 7 1 1 7 1 0 0 0 0 0 0
## 3723 7 1 1 7 1 0 0 0 0 0 0
## 3724 7 1 1 7 1 0 0 0 0 0 0
## 3725 7 1 1 7 1 0 0 0 0 0 0
## 3726 29 5 7 25 2 0 0 0 0 0 0
## 3727 29 5 7 25 2 0 0 0 0 0 0
## 3728 29 5 7 25 2 0 0 0 0 0 0
## 3729 29 5 7 25 2 0 0 0 0 0 0
## 3730 29 5 7 25 2 0 0 0 0 0 0
## 3731 29 5 7 25 2 0 0 0 0 0 0
## 3732 29 5 7 25 2 0 0 0 0 0 0
## 3733 29 5 7 25 2 0 0 0 0 0 0
## 3734 29 5 7 25 2 0 0 0 0 0 0
## 3735 29 5 7 25 2 0 0 0 0 0 0
## 3736 29 5 7 25 2 0 0 0 0 0 0
## 3737 29 5 7 25 2 0 0 0 0 0 0
## 3738 29 5 7 25 2 0 0 0 0 0 0
## 3739 29 5 7 25 2 0 0 0 0 0 0
## 3740 29 5 7 25 2 0 0 0 0 0 0
## 3741 29 5 7 25 2 0 0 0 0 0 0
## 3742 29 5 7 25 2 0 0 0 0 0 0
## 3743 29 5 7 25 2 0 0 0 0 0 0
## 3744 29 5 7 25 2 0 0 0 0 0 0
## 3745 29 5 7 25 2 0 0 0 0 0 0
## 3746 29 5 7 25 2 0 0 0 0 0 0
## 3747 29 5 7 25 2 0 0 0 0 0 0
## 3748 29 5 7 25 2 0 0 0 0 0 0
## 3749 29 5 7 25 2 0 0 0 0 0 0
## 3750 14 3 4 13 2 0 0 0 0 0 0
## 3751 14 3 4 13 2 0 0 0 0 0 0
## 3752 14 3 4 15 2 0 0 0 2 0 0
## 3753 14 3 4 15 2 0 0 0 2 0 0
## 3754 14 3 4 15 2 0 0 0 2 0 0
## 3755 14 3 4 15 2 0 0 0 2 0 0
## 3756 14 3 4 15 2 0 0 0 2 0 0
## 3757 14 3 4 15 2 0 0 0 2 0 0
## 3758 14 3 4 15 2 0 0 0 2 0 0
## 3759 14 3 4 15 2 0 0 0 2 0 0
## 3760 14 3 4 15 2 0 0 0 2 0 0
## 3761 14 3 4 15 2 0 0 0 2 0 0
## 3762 14 3 4 13 2 0 0 0 0 0 0
## 3763 14 3 4 13 2 0 0 0 0 0 0
## 3764 14 3 4 15 2 0 0 0 2 0 0
## 3765 14 3 4 15 2 0 0 0 2 0 0
## 3766 14 3 4 15 2 0 0 0 2 0 0
## 3767 14 3 4 15 2 0 0 0 2 0 0
## 3768 14 3 4 15 2 0 0 0 2 0 0
## 3769 14 3 4 15 2 0 0 0 2 0 0
## 3770 14 3 4 15 2 0 0 0 2 0 0
## 3771 14 3 4 15 2 0 0 0 2 0 0
## 3772 14 3 4 15 2 0 0 0 2 0 0
## 3773 14 3 4 15 2 0 0 0 2 0 0
## 3774 69 9 14 63 2 2 0 6 0 0 0
## 3775 69 9 14 63 2 2 0 6 0 0 0
## 3776 69 9 14 63 2 2 0 6 0 0 0
## 3777 69 9 14 63 2 2 0 6 0 0 0
## 3778 69 9 14 63 2 2 0 6 0 0 0
## 3779 69 9 14 63 2 2 0 6 0 0 0
## 3780 69 9 14 63 2 2 0 6 0 0 0
## 3781 69 9 14 63 2 2 0 6 0 0 0
## 3782 69 9 14 63 2 2 0 6 0 0 0
## 3783 69 9 14 63 2 2 0 6 0 0 0
## 3784 69 9 14 63 2 2 0 6 0 0 0
## 3785 69 9 14 63 2 2 0 6 0 0 0
## 3786 56 10 23 48 2 0 0 0 0 0 0
## 3787 56 10 23 48 2 0 0 0 0 0 0
## 3788 56 10 23 48 2 0 0 0 0 0 0
## 3789 56 10 23 48 2 0 0 0 0 0 0
## 3790 56 10 23 48 2 0 0 0 0 0 0
## 3791 56 10 23 48 2 0 0 0 0 0 0
## 3792 56 10 23 48 2 0 0 0 0 0 0
## 3793 56 10 23 48 2 0 0 0 0 0 0
## 3794 56 10 23 48 2 0 0 0 0 0 0
## 3795 56 10 23 48 2 0 0 0 0 0 0
## 3796 56 10 23 48 2 0 0 0 0 0 0
## 3797 56 10 23 48 2 0 0 0 0 0 0
## 3798 56 10 23 48 2 0 0 0 0 0 0
## 3799 56 10 23 48 2 0 0 0 0 0 0
## 3800 56 10 23 48 2 0 0 0 0 0 0
## 3801 56 10 23 48 2 0 0 0 0 0 0
## 3802 56 10 23 48 2 0 0 0 0 0 0
## 3803 56 10 23 48 2 0 0 0 0 0 0
## 3804 56 10 23 48 2 0 0 0 0 0 0
## 3805 56 10 23 48 2 0 0 0 0 0 0
## 3806 56 10 23 48 2 0 0 0 0 0 0
## 3807 56 10 23 48 2 0 0 0 0 0 0
## 3808 56 10 23 48 2 0 0 0 0 0 0
## 3809 56 10 23 48 2 0 0 0 0 0 0
## 3810 123 18 19 79 5 0 0 4 0 0 0
## 3811 123 18 19 79 5 0 0 4 0 0 0
## 3812 123 18 19 79 5 0 0 4 0 0 0
## 3813 123 18 19 79 5 0 0 4 0 0 0
## 3814 123 18 19 79 5 0 0 4 0 0 0
## 3815 123 18 19 79 5 0 0 4 0 0 0
## 3816 123 18 19 79 5 0 0 4 0 0 0
## 3817 123 18 19 79 5 0 0 4 0 0 0
## 3818 123 18 19 79 5 0 0 4 0 0 0
## 3819 123 18 19 79 5 0 0 4 0 0 0
## 3820 123 18 19 79 5 0 0 4 0 0 0
## 3821 123 18 19 79 5 0 0 4 0 0 0
## 3822 123 18 19 79 5 0 0 4 0 0 0
## 3823 123 18 19 79 5 0 0 4 0 0 0
## 3824 123 18 19 79 5 0 0 4 0 0 0
## 3825 123 18 19 79 5 0 0 4 0 0 0
## 3826 123 18 19 79 5 0 0 4 0 0 0
## 3827 123 18 19 79 5 0 0 4 0 0 0
## 3828 123 18 19 79 5 0 0 4 0 0 0
## 3829 123 18 19 79 5 0 0 4 0 0 0
## 3830 123 18 19 79 5 0 0 4 0 0 0
## 3831 123 18 19 79 5 0 0 4 0 0 0
## 3832 123 18 19 79 5 0 0 4 0 0 0
## 3833 123 18 19 79 5 0 0 4 0 0 0
## 3834 36 6 7 28 2 0 0 0 0 0 0
## 3835 36 6 7 28 2 0 0 0 0 0 0
## 3836 36 6 7 28 2 0 0 0 0 0 0
## 3837 36 6 7 28 2 0 0 0 0 0 0
## 3838 36 6 7 28 2 0 0 0 0 0 0
## 3839 36 6 7 28 2 0 0 0 0 0 0
## 3840 36 6 7 28 2 0 0 0 0 0 0
## 3841 36 6 7 28 2 0 0 0 0 0 0
## 3842 36 6 7 28 2 0 0 0 0 0 0
## 3843 36 6 7 28 2 0 0 0 0 0 0
## 3844 36 6 7 28 2 0 0 0 0 0 0
## 3845 36 6 7 28 2 0 0 0 0 0 0
## 3846 44 7 11 26 5 0 2 1 0 0 0
## Smells
## 1 Unnecessary Abstraction,ar1
## 2 Unnecessary Abstraction,ar1
## 3 Unutilized Abstraction,ar1
## 4 Unutilized Abstraction,ar1
## 5 Unnecessary Abstraction,ar1
## 6 Unnecessary Abstraction,ar1
## 7 Unutilized Abstraction,ar1
## 8 Unutilized Abstraction,ar1
## 9 Unutilized Abstraction,ar1
## 10 Unutilized Abstraction,ar1
## 11 Broken Hierarchy,ar1
## 12 Broken Hierarchy,ar1
## 13 Unnecessary Abstraction,ar1
## 14 Unnecessary Abstraction,ar1
## 15 Unutilized Abstraction,ar1
## 16 Unutilized Abstraction,ar1
## 17 Unnecessary Abstraction,ar1
## 18 Unnecessary Abstraction,ar1
## 19 Unnecessary Abstraction,ar1
## 20 Unnecessary Abstraction,ar1
## 21 Unutilized Abstraction,ar1
## 22 Unutilized Abstraction,ar1
## 23 Unutilized Abstraction,ar1,gf1
## 24 Unutilized Abstraction,ar1
## 25 Broken Hierarchy,ar1
## 26 Unutilized Abstraction,ar1
## 27 Broken Hierarchy,ar1
## 28 Multifaceted Abstraction,ar1,et1
## 29 Multifaceted Abstraction,ar1,et1
## 30 Unutilized Abstraction,ar1,et1
## 31 Unutilized Abstraction,ar1,et1
## 32 Deficient Encapsulation,ar1,et1
## 33 Deficient Encapsulation,ar1,et1
## 34 Unutilized Abstraction,et1,it1
## 35 Unutilized Abstraction,et1,it1
## 36 Unutilized Abstraction,ar1
## 37 Unutilized Abstraction,ar1
## 38 Unutilized Abstraction,ar1
## 39 Unutilized Abstraction,ar1
## 40 Unutilized Abstraction,ar1,gf1
## 41 Unutilized Abstraction,ar1,gf1
## 42 Broken Modularization,ar1,gf1
## 43 Broken Modularization,ar1,gf1
## 44 Unutilized Abstraction,ar1
## 45 Unutilized Abstraction,ar1
## 46 Broken Modularization,ar1
## 47 Broken Modularization,ar1
## 48 Unutilized Abstraction
## 49 Unutilized Abstraction
## 50 Unnecessary Abstraction,ar1
## 51 Unnecessary Abstraction,ar1
## 52 Unutilized Abstraction,ar1
## 53 Unutilized Abstraction,ar1
## 54 Unnecessary Abstraction,ar1
## 55 Unnecessary Abstraction,ar1
## 56 Unutilized Abstraction,ar1
## 57 Unutilized Abstraction,ar1
## 58 Unutilized Abstraction,ar1
## 59 Unutilized Abstraction,ar1
## 60 Broken Hierarchy,ar1
## 61 Broken Hierarchy,ar1
## 62 Unnecessary Abstraction,ar1
## 63 Unnecessary Abstraction,ar1
## 64 Unutilized Abstraction,ar1
## 65 Unutilized Abstraction,ar1
## 66 Unnecessary Abstraction,ar1
## 67 Unnecessary Abstraction,ar1
## 68 Unnecessary Abstraction,ar1
## 69 Unnecessary Abstraction,ar1
## 70 Unutilized Abstraction,ar1
## 71 Unutilized Abstraction,ar1
## 72 Unutilized Abstraction,ar1,gf1
## 73 Unutilized Abstraction,ar1
## 74 Broken Hierarchy,ar1
## 75 Unutilized Abstraction,ar1
## 76 Broken Hierarchy,ar1
## 77 Multifaceted Abstraction,ar1,et1
## 78 Multifaceted Abstraction,ar1,et1
## 79 Unutilized Abstraction,ar1,et1
## 80 Unutilized Abstraction,ar1,et1
## 81 Deficient Encapsulation,ar1,et1
## 82 Deficient Encapsulation,ar1,et1
## 83 Unutilized Abstraction,et1,it1
## 84 Unutilized Abstraction,et1,it1
## 85 Unutilized Abstraction,ar1
## 86 Unutilized Abstraction,ar1
## 87 Unutilized Abstraction,ar1
## 88 Unutilized Abstraction,ar1
## 89 Unutilized Abstraction,ar1,gf1
## 90 Unutilized Abstraction,ar1,gf1
## 91 Broken Modularization,ar1,gf1
## 92 Broken Modularization,ar1,gf1
## 93 Unutilized Abstraction,ar1
## 94 Unutilized Abstraction,ar1
## 95 Broken Modularization,ar1
## 96 Broken Modularization,ar1
## 97 Unutilized Abstraction
## 98 Unutilized Abstraction
## 99 Unnecessary Abstraction,ar1
## 100 Unnecessary Abstraction,ar1
## 101 Unutilized Abstraction,ar1
## 102 Unutilized Abstraction,ar1
## 103 Unnecessary Abstraction,ar1
## 104 Unnecessary Abstraction,ar1
## 105 Unutilized Abstraction,ar1
## 106 Unutilized Abstraction,ar1
## 107 Unutilized Abstraction,ar1
## 108 Unutilized Abstraction,ar1
## 109 Broken Hierarchy,ar1
## 110 Broken Hierarchy,ar1
## 111 Unnecessary Abstraction,ar1
## 112 Unnecessary Abstraction,ar1
## 113 Unutilized Abstraction,ar1
## 114 Unutilized Abstraction,ar1
## 115 Unnecessary Abstraction,ar1
## 116 Unnecessary Abstraction,ar1
## 117 Unnecessary Abstraction,ar1
## 118 Unnecessary Abstraction,ar1
## 119 Unutilized Abstraction,ar1
## 120 Unutilized Abstraction,ar1
## 121 Unutilized Abstraction,ar1,gf1
## 122 Unutilized Abstraction,ar1
## 123 Broken Hierarchy,ar1
## 124 Unutilized Abstraction,ar1
## 125 Broken Hierarchy,ar1
## 126 Multifaceted Abstraction,ar1,et1
## 127 Multifaceted Abstraction,ar1,et1
## 128 Unutilized Abstraction,ar1,et1
## 129 Unutilized Abstraction,ar1,et1
## 130 Deficient Encapsulation,ar1,et1
## 131 Deficient Encapsulation,ar1,et1
## 132 Unutilized Abstraction,et1,it1
## 133 Unutilized Abstraction,et1,it1
## 134 Unutilized Abstraction,ar1
## 135 Unutilized Abstraction,ar1
## 136 Unutilized Abstraction,ar1
## 137 Unutilized Abstraction,ar1
## 138 Unutilized Abstraction,ar1,gf1
## 139 Unutilized Abstraction,ar1,gf1
## 140 Broken Modularization,ar1,gf1
## 141 Broken Modularization,ar1,gf1
## 142 Unutilized Abstraction,ar1
## 143 Unutilized Abstraction,ar1
## 144 Broken Modularization,ar1
## 145 Broken Modularization,ar1
## 146 Unutilized Abstraction
## 147 Unutilized Abstraction
## 148 Unnecessary Abstraction,ar1
## 149 Unnecessary Abstraction,ar1
## 150 Unutilized Abstraction,ar1
## 151 Unutilized Abstraction,ar1
## 152 Unnecessary Abstraction,ar1
## 153 Unnecessary Abstraction,ar1
## 154 Unutilized Abstraction,ar1
## 155 Unutilized Abstraction,ar1
## 156 Multifaceted Abstraction,ar1
## 157 Multifaceted Abstraction,ar1
## 158 Unutilized Abstraction,ar1
## 159 Unutilized Abstraction,ar1
## 160 Unnecessary Abstraction,ar1
## 161 Unnecessary Abstraction,ar1
## 162 Unutilized Abstraction,ar1
## 163 Unutilized Abstraction,ar1
## 164 Unnecessary Abstraction,ar1
## 165 Unnecessary Abstraction,ar1
## 166 Unnecessary Abstraction,ar1
## 167 Unnecessary Abstraction,ar1
## 168 Unutilized Abstraction,ar1
## 169 Unutilized Abstraction,ar1
## 170 Multifaceted Abstraction,ar1,et1
## 171 Multifaceted Abstraction,ar1,et1
## 172 Unutilized Abstraction,ar1,et1
## 173 Unutilized Abstraction,ar1,et1
## 174 Deficient Encapsulation,ar1,et1
## 175 Deficient Encapsulation,ar1,et1
## 176 Unutilized Abstraction,et1,it1
## 177 Unutilized Abstraction,et1,it1
## 178 Unutilized Abstraction,ar1
## 179 Unutilized Abstraction,ar1
## 180 Unutilized Abstraction,ar1
## 181 Unutilized Abstraction,ar1
## 182 Unutilized Abstraction,ar1,gf1
## 183 Unutilized Abstraction,ar1,gf1
## 184 Broken Modularization,ar1,gf1
## 185 Broken Modularization,ar1,gf1
## 186 Unutilized Abstraction,ar1
## 187 Unutilized Abstraction,ar1
## 188 Broken Modularization,ar1
## 189 Broken Modularization,ar1
## 190 Unutilized Abstraction
## 191 Unutilized Abstraction
## 192 Unnecessary Abstraction,ar1
## 193 Unnecessary Abstraction,ar1
## 194 Unutilized Abstraction,ar1
## 195 Unutilized Abstraction,ar1
## 196 Unutilized Abstraction,ar1
## 197 Unutilized Abstraction,ar1
## 198 Unnecessary Abstraction,ar1
## 199 Unnecessary Abstraction,ar1
## 200 Unutilized Abstraction,ar1
## 201 Unutilized Abstraction,ar1
## 202 Unnecessary Abstraction,ar1
## 203 Unnecessary Abstraction,ar1
## 204 Unutilized Abstraction,ar1
## 205 Unutilized Abstraction,ar1
## 206 Unnecessary Abstraction,ar1
## 207 Unnecessary Abstraction,ar1
## 208 Unutilized Abstraction,ar1
## 209 Unutilized Abstraction,ar1
## 210 Unutilized Abstraction,ar1
## 211 Unutilized Abstraction,ar1
## 212 Unnecessary Abstraction,ar1
## 213 Unnecessary Abstraction,ar1
## 214 Unutilized Abstraction,ar1
## 215 Unutilized Abstraction,ar1
## 216 Unnecessary Abstraction,ar1
## 217 Unnecessary Abstraction,ar1
## 218 Unutilized Abstraction,ar1
## 219 Unutilized Abstraction,ar1
## 220 Unnecessary Abstraction,ar1
## 221 Unnecessary Abstraction,ar1
## 222 Unutilized Abstraction,ar1
## 223 Unutilized Abstraction,ar1
## 224 Unutilized Abstraction,ar1,gf1
## 225 Unutilized Abstraction,ar1,gf1
## 226 Broken Modularization,ar1,gf1
## 227 Broken Modularization,ar1,gf1
## 228 Unnecessary Abstraction,ar1
## 229 Unnecessary Abstraction,ar1
## 230 Unutilized Abstraction,ar1
## 231 Unutilized Abstraction,ar1
## 232 Unnecessary Abstraction,ar1
## 233 Unnecessary Abstraction,ar1
## 234 Unutilized Abstraction,ar1
## 235 Unutilized Abstraction,ar1
## 236 Unnecessary Abstraction,ar1
## 237 Unnecessary Abstraction,ar1
## 238 Unutilized Abstraction,ar1
## 239 Unutilized Abstraction,ar1
## 240 Unutilized Abstraction,ar1
## 241 Unutilized Abstraction,ar1
## 242 Broken Hierarchy,ar1
## 243 Broken Hierarchy,ar1
## 244 Unnecessary Abstraction,ar1
## 245 Unnecessary Abstraction,ar1
## 246 Unutilized Abstraction,ar1
## 247 Unutilized Abstraction,ar1
## 248 Unnecessary Abstraction,ar1
## 249 Unnecessary Abstraction,ar1
## 250 Unnecessary Abstraction,ar1
## 251 Unnecessary Abstraction,ar1
## 252 Unutilized Abstraction,ar1
## 253 Unutilized Abstraction,ar1
## 254 Unutilized Abstraction,ar1,gf1
## 255 Unutilized Abstraction,ar1
## 256 Broken Hierarchy,ar1
## 257 Unutilized Abstraction,ar1
## 258 Broken Hierarchy,ar1
## 259 Multifaceted Abstraction,ar1,et1
## 260 Multifaceted Abstraction,ar1,et1
## 261 Unutilized Abstraction,ar1,et1
## 262 Unutilized Abstraction,ar1,et1
## 263 Deficient Encapsulation,ar1,et1
## 264 Deficient Encapsulation,ar1,et1
## 265 Unutilized Abstraction,et1,it1
## 266 Unutilized Abstraction,et1,it1
## 267 Unutilized Abstraction,ar1
## 268 Unutilized Abstraction,ar1
## 269 Unutilized Abstraction,ar1
## 270 Unutilized Abstraction,ar1
## 271 Unutilized Abstraction,ar1,gf1
## 272 Unutilized Abstraction,ar1,gf1
## 273 Broken Modularization,ar1,gf1
## 274 Broken Modularization,ar1,gf1
## 275 Unutilized Abstraction,ar1
## 276 Unutilized Abstraction,ar1
## 277 Broken Modularization,ar1
## 278 Broken Modularization,ar1
## 279 Unutilized Abstraction
## 280 Unutilized Abstraction
## 281 Unnecessary Abstraction,ar1
## 282 Unnecessary Abstraction,ar1
## 283 Unutilized Abstraction,ar1
## 284 Unutilized Abstraction,ar1
## 285 Unnecessary Abstraction,ar1
## 286 Unnecessary Abstraction,ar1
## 287 Unutilized Abstraction,ar1
## 288 Unutilized Abstraction,ar1
## 289 Multifaceted Abstraction,ar1
## 290 Multifaceted Abstraction,ar1
## 291 Unutilized Abstraction,ar1
## 292 Unutilized Abstraction,ar1
## 293 Unnecessary Abstraction,ar1
## 294 Unnecessary Abstraction,ar1
## 295 Unutilized Abstraction,ar1
## 296 Unutilized Abstraction,ar1
## 297 Unnecessary Abstraction,ar1
## 298 Unnecessary Abstraction,ar1
## 299 Unnecessary Abstraction,ar1
## 300 Unnecessary Abstraction,ar1
## 301 Unutilized Abstraction,ar1
## 302 Unutilized Abstraction,ar1
## 303 Multifaceted Abstraction,ar1,et1
## 304 Multifaceted Abstraction,ar1,et1
## 305 Unutilized Abstraction,ar1,et1
## 306 Unutilized Abstraction,ar1,et1
## 307 Deficient Encapsulation,ar1,et1
## 308 Deficient Encapsulation,ar1,et1
## 309 Unutilized Abstraction,et1,it1
## 310 Unutilized Abstraction,et1,it1
## 311 Unutilized Abstraction,ar1
## 312 Unutilized Abstraction,ar1
## 313 Unutilized Abstraction,ar1
## 314 Unutilized Abstraction,ar1
## 315 Unutilized Abstraction,ar1,gf1
## 316 Unutilized Abstraction,ar1,gf1
## 317 Broken Modularization,ar1,gf1
## 318 Broken Modularization,ar1,gf1
## 319 Unutilized Abstraction,ar1
## 320 Unutilized Abstraction,ar1
## 321 Broken Modularization,ar1
## 322 Broken Modularization,ar1
## 323 Unutilized Abstraction
## 324 Unutilized Abstraction
## 325 Unnecessary Abstraction,ar1
## 326 Unnecessary Abstraction,ar1
## 327 Unutilized Abstraction,ar1
## 328 Unutilized Abstraction,ar1
## 329 Unnecessary Abstraction,ar1
## 330 Unnecessary Abstraction,ar1
## 331 Unutilized Abstraction,ar1
## 332 Unutilized Abstraction,ar1
## 333 Unutilized Abstraction,ar1
## 334 Unutilized Abstraction,ar1
## 335 Broken Hierarchy,ar1
## 336 Broken Hierarchy,ar1
## 337 Unnecessary Abstraction,ar1
## 338 Unnecessary Abstraction,ar1
## 339 Unutilized Abstraction,ar1
## 340 Unutilized Abstraction,ar1
## 341 Unnecessary Abstraction,ar1
## 342 Unnecessary Abstraction,ar1
## 343 Unnecessary Abstraction,ar1
## 344 Unnecessary Abstraction,ar1
## 345 Unutilized Abstraction,ar1
## 346 Unutilized Abstraction,ar1
## 347 Unutilized Abstraction,ar1,gf1
## 348 Unutilized Abstraction,ar1
## 349 Broken Hierarchy,ar1
## 350 Unutilized Abstraction,ar1
## 351 Broken Hierarchy,ar1
## 352 Multifaceted Abstraction,ar1,et1
## 353 Multifaceted Abstraction,ar1,et1
## 354 Unutilized Abstraction,ar1,et1
## 355 Unutilized Abstraction,ar1,et1
## 356 Deficient Encapsulation,ar1,et1
## 357 Deficient Encapsulation,ar1,et1
## 358 Unutilized Abstraction,et1,it1
## 359 Unutilized Abstraction,et1,it1
## 360 Unutilized Abstraction,ar1
## 361 Unutilized Abstraction,ar1
## 362 Unutilized Abstraction,ar1
## 363 Unutilized Abstraction,ar1
## 364 Unutilized Abstraction,ar1,gf1
## 365 Unutilized Abstraction,ar1,gf1
## 366 Broken Modularization,ar1,gf1
## 367 Broken Modularization,ar1,gf1
## 368 Unutilized Abstraction,ar1
## 369 Unutilized Abstraction,ar1
## 370 Broken Modularization,ar1
## 371 Broken Modularization,ar1
## 372 Unutilized Abstraction
## 373 Unutilized Abstraction
## 374 Unnecessary Abstraction,ar1
## 375 Unnecessary Abstraction,ar1
## 376 Unnecessary Abstraction,ar1
## 377 Unnecessary Abstraction,ar1
## 378 Unutilized Abstraction,ar1
## 379 Unutilized Abstraction,ar1
## 380 Unutilized Abstraction,ar1
## 381 Unutilized Abstraction,ar1
## 382 Broken Hierarchy,ar1
## 383 Broken Hierarchy,ar1
## 384 Unnecessary Abstraction,ar1
## 385 Unnecessary Abstraction,ar1
## 386 Unutilized Abstraction,ar1
## 387 Unutilized Abstraction,ar1
## 388 Unnecessary Abstraction,ar1
## 389 Unnecessary Abstraction,ar1
## 390 Unnecessary Abstraction,ar1
## 391 Unnecessary Abstraction,ar1
## 392 Unutilized Abstraction,ar1
## 393 Unutilized Abstraction,ar1
## 394 Unutilized Abstraction,ar1,gf1
## 395 Unutilized Abstraction,ar1
## 396 Broken Hierarchy,ar1
## 397 Unutilized Abstraction,ar1
## 398 Broken Hierarchy,ar1
## 399 Multifaceted Abstraction,ar1,et1
## 400 Multifaceted Abstraction,ar1,et1
## 401 Unutilized Abstraction,ar1,et1
## 402 Unutilized Abstraction,ar1,et1
## 403 Deficient Encapsulation,ar1,et1
## 404 Deficient Encapsulation,ar1,et1
## 405 Unutilized Abstraction,et1,it1
## 406 Unutilized Abstraction,et1,it1
## 407 Unutilized Abstraction,ar1
## 408 Unutilized Abstraction,ar1
## 409 Unutilized Abstraction,ar1
## 410 Unutilized Abstraction,ar1
## 411 Unutilized Abstraction,ar1,gf1
## 412 Unutilized Abstraction,ar1,gf1
## 413 Broken Modularization,ar1,gf1
## 414 Broken Modularization,ar1,gf1
## 415 Unutilized Abstraction,ar1
## 416 Unutilized Abstraction,ar1
## 417 Broken Modularization,ar1
## 418 Broken Modularization,ar1
## 419 Unutilized Abstraction
## 420 Unutilized Abstraction
## 421 Unnecessary Abstraction,ar1
## 422 Unnecessary Abstraction,ar1
## 423 Unnecessary Abstraction,ar1
## 424 Unnecessary Abstraction,ar1
## 425 Unutilized Abstraction,ar1
## 426 Unutilized Abstraction,ar1
## 427 Unutilized Abstraction,ar1
## 428 Unutilized Abstraction,ar1
## 429 Broken Hierarchy,ar1
## 430 Broken Hierarchy,ar1
## 431 Unnecessary Abstraction,ar1
## 432 Unnecessary Abstraction,ar1
## 433 Unutilized Abstraction,ar1
## 434 Unutilized Abstraction,ar1
## 435 Unnecessary Abstraction,ar1
## 436 Unnecessary Abstraction,ar1
## 437 Unnecessary Abstraction,ar1
## 438 Unnecessary Abstraction,ar1
## 439 Unutilized Abstraction,ar1
## 440 Unutilized Abstraction,ar1
## 441 Unutilized Abstraction,ar1,gf1
## 442 Unutilized Abstraction,ar1
## 443 Broken Hierarchy,ar1
## 444 Unutilized Abstraction,ar1
## 445 Broken Hierarchy,ar1
## 446 Multifaceted Abstraction,ar1,et1
## 447 Multifaceted Abstraction,ar1,et1
## 448 Unutilized Abstraction,ar1,et1
## 449 Unutilized Abstraction,ar1,et1
## 450 Deficient Encapsulation,ar1,et1
## 451 Deficient Encapsulation,ar1,et1
## 452 Unutilized Abstraction,et1,it1
## 453 Unutilized Abstraction,et1,it1
## 454 Unutilized Abstraction,ar1
## 455 Unutilized Abstraction,ar1
## 456 Unutilized Abstraction,ar1
## 457 Unutilized Abstraction,ar1
## 458 Unutilized Abstraction,ar1,gf1
## 459 Unutilized Abstraction,ar1,gf1
## 460 Broken Modularization,ar1,gf1
## 461 Broken Modularization,ar1,gf1
## 462 Unutilized Abstraction,ar1
## 463 Unutilized Abstraction,ar1
## 464 Broken Modularization,ar1
## 465 Broken Modularization,ar1
## 466 Unutilized Abstraction
## 467 Unutilized Abstraction
## 468 Deficient Encapsulation,ar1,mg1,ro1
## 469 Deficient Encapsulation,ar1,mg1,ro1
## 470 Unnecessary Abstraction,ar1
## 471 Unnecessary Abstraction,ar1
## 472 Unnecessary Abstraction,ar1
## 473 Unnecessary Abstraction,ar1
## 474 Unutilized Abstraction,ar1
## 475 Unutilized Abstraction,ar1
## 476 Unutilized Abstraction,ar1
## 477 Unutilized Abstraction,ar1
## 478 Unutilized Abstraction,ar1
## 479 Unutilized Abstraction,ar1
## 480 Unutilized Abstraction,ar1
## 481 Unutilized Abstraction,ar1
## 482 Broken Hierarchy,ar1
## 483 Broken Hierarchy,ar1
## 484 Unutilized Abstraction,ar1
## 485 Unutilized Abstraction,ar1
## 486 Broken Hierarchy,ar1
## 487 Broken Hierarchy,ar1
## 488 Unnecessary Abstraction,ar1
## 489 Unnecessary Abstraction,ar1
## 490 Unutilized Abstraction,ar1
## 491 Unutilized Abstraction,ar1
## 492 Unutilized Abstraction,ar1
## 493 Unutilized Abstraction,ar1
## 494 Broken Hierarchy,ar1
## 495 Broken Hierarchy,ar1
## 496 Unnecessary Abstraction,ar1
## 497 Unnecessary Abstraction,ar1
## 498 Unutilized Abstraction,ar1
## 499 Unutilized Abstraction,ar1
## 500 Unutilized Abstraction,ar1,et1,gf1
## 501 Unutilized Abstraction,ar1,et1,gf1
## 502 Unutilized Abstraction,ar1
## 503 Unutilized Abstraction,ar1
## 504 Broken Hierarchy,ar1
## 505 Broken Hierarchy,ar1
## 506 Unutilized Abstraction,ar1
## 507 Unutilized Abstraction,ar1
## 508 Unnecessary Abstraction,ar1,gf1
## 509 Unnecessary Abstraction,ar1,gf1
## 510 Unutilized Abstraction,ar1,gf1
## 511 Unutilized Abstraction,ar1,gf1
## 512 Unutilized Abstraction,ar1,gf1
## 513 Unutilized Abstraction,ar1,gf1
## 514 Unutilized Abstraction,ar1
## 515 Unutilized Abstraction,ar1
## 516 Broken Hierarchy,ar1
## 517 Broken Hierarchy,ar1
## 518 Unutilized Abstraction,et1,it1
## 519 Unutilized Abstraction,et1,it1
## 520 Unutilized Abstraction,ar1
## 521 Unutilized Abstraction,ar1
## 522 Unutilized Abstraction,ar1
## 523 Unutilized Abstraction,ar1
## 524 Deficient Encapsulation,ar1
## 525 Deficient Encapsulation,ar1
## 526 Deficient Encapsulation,ar1
## 527 Deficient Encapsulation,ar1
## 528 Unutilized Abstraction,ar1
## 529 Unutilized Abstraction,ar1
## 530 Deficient Encapsulation,ar1
## 531 Deficient Encapsulation,ar1
## 532 Unnecessary Abstraction,ar1
## 533 Unnecessary Abstraction,ar1
## 534 Unutilized Abstraction,ar1
## 535 Unutilized Abstraction,ar1
## 536 Deficient Encapsulation,ar1
## 537 Deficient Encapsulation,ar1
## 538 Unnecessary Abstraction,ar1
## 539 Unnecessary Abstraction,ar1
## 540 Deficient Encapsulation,ar1
## 541 Deficient Encapsulation,ar1
## 542 Unnecessary Abstraction,ar1
## 543 Unnecessary Abstraction,ar1
## 544 Deficient Encapsulation,ar1
## 545 Deficient Encapsulation,ar1
## 546 Unnecessary Abstraction,ar1
## 547 Unnecessary Abstraction,ar1
## 548 Unutilized Abstraction,ar1
## 549 Unutilized Abstraction,ar1
## 550 Deficient Encapsulation,ar1
## 551 Deficient Encapsulation,ar1
## 552 Broken Modularization,ar1
## 553 Broken Modularization,ar1
## 554 Unutilized Abstraction,ar1,et1,gf1
## 555 Unutilized Abstraction,ar1,et1,gf1
## 556 Unnecessary Abstraction,ar1
## 557 Unnecessary Abstraction,ar1
## 558 Unutilized Abstraction,ar1
## 559 Unutilized Abstraction,ar1
## 560 Deficient Encapsulation,ar1
## 561 Deficient Encapsulation,ar1
## 562 Broken Modularization,ar1
## 563 Broken Modularization,ar1
## 564 Deficient Encapsulation,ar1
## 565 Deficient Encapsulation,ar1
## 566 Broken Modularization
## 567 Broken Modularization
## 568 Unnecessary Abstraction,ar1
## 569 Unnecessary Abstraction,ar1
## 570 Unutilized Abstraction,ar1
## 571 Unutilized Abstraction,ar1
## 572 Unnecessary Abstraction,ar1
## 573 Unnecessary Abstraction,ar1
## 574 Unutilized Abstraction,ar1
## 575 Unutilized Abstraction,ar1
## 576 Unutilized Abstraction,ar1,gf1
## 577 Unutilized Abstraction,ar1,gf1
## 578 Broken Modularization,ar1,gf1
## 579 Broken Modularization,ar1,gf1
## 580 Unutilized Abstraction,ar1
## 581 Unutilized Abstraction,ar1
## 582 Broken Modularization,ar1
## 583 Broken Modularization,ar1
## 584 Insufficient Modularization,ar1,et1,it1
## 585 Insufficient Modularization,ar1,et1,it1
## 586 Unutilized Abstraction
## 587 Unutilized Abstraction
## 588 Unutilized Abstraction,ar1
## 589 Unutilized Abstraction,ar1
## 590 Feature Envy,ar1,mg1,ro1
## 591 Feature Envy,ar1,mg1,ro1
## 592 Cyclically-dependent Modularization,et1
## 593 Cyclically-dependent Modularization,et1
## 594 Cyclically-dependent Modularization,et1
## 595 Cyclically-dependent Modularization,et1
## 596 Cyclically-dependent Modularization,et1
## 597 Cyclically-dependent Modularization,et1
## 598 Cyclically-dependent Modularization,et1
## 599 Cyclically-dependent Modularization,et1
## 600 Cyclically-dependent Modularization,et1
## 601 Cyclically-dependent Modularization,et1
## 602 Cyclically-dependent Modularization,et1
## 603 Cyclically-dependent Modularization,et1
## 604 Cyclically-dependent Modularization,et1
## 605 Cyclically-dependent Modularization,et1
## 606 Cyclically-dependent Modularization,ar1,et1
## 607 Cyclically-dependent Modularization,ar1,et1
## 608 Cyclically-dependent Modularization,ar1,et1
## 609 Cyclically-dependent Modularization,ar1,et1
## 610 Cyclically-dependent Modularization,ar1,et1
## 611 Cyclically-dependent Modularization,ar1,et1
## 612 Cyclically-dependent Modularization,ar1,et1
## 613 Cyclically-dependent Modularization,ar1,et1
## 614 Cyclically-dependent Modularization,ar1,et1
## 615 Cyclically-dependent Modularization,ar1,et1
## 616 Cyclically-dependent Modularization,ar1,et1
## 617 Cyclically-dependent Modularization,ar1,et1
## 618 Cyclically-dependent Modularization,ar1,et1
## 619 Cyclically-dependent Modularization,ar1,et1
## 620 Unnecessary Abstraction,ar1
## 621 Unnecessary Abstraction,ar1
## 622 Unnecessary Abstraction,ar1
## 623 Unnecessary Abstraction,ar1
## 624 Unutilized Abstraction,ar1
## 625 Unutilized Abstraction,ar1
## 626 Unutilized Abstraction,ar1
## 627 Unutilized Abstraction,ar1
## 628 Unutilized Abstraction,ar1
## 629 Unutilized Abstraction,ar1
## 630 Unutilized Abstraction,ar1
## 631 Unutilized Abstraction,ar1
## 632 Broken Hierarchy,ar1
## 633 Broken Hierarchy,ar1
## 634 Unutilized Abstraction,ar1
## 635 Unutilized Abstraction,ar1
## 636 Broken Hierarchy,ar1
## 637 Broken Hierarchy,ar1
## 638 Unnecessary Abstraction,ar1
## 639 Unnecessary Abstraction,ar1
## 640 Unutilized Abstraction,ar1
## 641 Unutilized Abstraction,ar1
## 642 Unutilized Abstraction,ar1
## 643 Unutilized Abstraction,ar1
## 644 Broken Hierarchy,ar1
## 645 Broken Hierarchy,ar1
## 646 Unnecessary Abstraction,ar1
## 647 Unnecessary Abstraction,ar1
## 648 Unutilized Abstraction,ar1
## 649 Unutilized Abstraction,ar1
## 650 Unutilized Abstraction,ar1,et1,gf1
## 651 Unutilized Abstraction,ar1,et1,gf1
## 652 Unutilized Abstraction,ar1
## 653 Unutilized Abstraction,ar1
## 654 Broken Hierarchy,ar1
## 655 Broken Hierarchy,ar1
## 656 Unutilized Abstraction,ar1
## 657 Unutilized Abstraction,ar1
## 658 Unnecessary Abstraction,ar1,gf1
## 659 Unnecessary Abstraction,ar1,gf1
## 660 Unutilized Abstraction,ar1,gf1
## 661 Unutilized Abstraction,ar1,gf1
## 662 Unutilized Abstraction,ar1,gf1
## 663 Unutilized Abstraction,ar1,gf1
## 664 Unutilized Abstraction,ar1
## 665 Unutilized Abstraction,ar1
## 666 Broken Hierarchy,ar1
## 667 Broken Hierarchy,ar1
## 668 Unutilized Abstraction,et1,it1
## 669 Unutilized Abstraction,et1,it1
## 670 Unutilized Abstraction,ar1
## 671 Unutilized Abstraction,ar1
## 672 Unutilized Abstraction,ar1
## 673 Unutilized Abstraction,ar1
## 674 Deficient Encapsulation,ar1
## 675 Deficient Encapsulation,ar1
## 676 Deficient Encapsulation,ar1
## 677 Deficient Encapsulation,ar1
## 678 Unutilized Abstraction,ar1
## 679 Unutilized Abstraction,ar1
## 680 Deficient Encapsulation,ar1
## 681 Deficient Encapsulation,ar1
## 682 Unnecessary Abstraction,ar1
## 683 Unnecessary Abstraction,ar1
## 684 Unutilized Abstraction,ar1
## 685 Unutilized Abstraction,ar1
## 686 Deficient Encapsulation,ar1
## 687 Deficient Encapsulation,ar1
## 688 Unnecessary Abstraction,ar1
## 689 Unnecessary Abstraction,ar1
## 690 Deficient Encapsulation,ar1
## 691 Deficient Encapsulation,ar1
## 692 Unnecessary Abstraction,ar1
## 693 Unnecessary Abstraction,ar1
## 694 Deficient Encapsulation,ar1
## 695 Deficient Encapsulation,ar1
## 696 Unnecessary Abstraction,ar1
## 697 Unnecessary Abstraction,ar1
## 698 Unutilized Abstraction,ar1
## 699 Unutilized Abstraction,ar1
## 700 Deficient Encapsulation,ar1
## 701 Deficient Encapsulation,ar1
## 702 Broken Modularization,ar1
## 703 Broken Modularization,ar1
## 704 Unutilized Abstraction,ar1,et1,gf1
## 705 Unutilized Abstraction,ar1,et1,gf1
## 706 Unnecessary Abstraction,ar1
## 707 Unnecessary Abstraction,ar1
## 708 Unutilized Abstraction,ar1
## 709 Unutilized Abstraction,ar1
## 710 Deficient Encapsulation,ar1
## 711 Deficient Encapsulation,ar1
## 712 Broken Modularization,ar1
## 713 Broken Modularization,ar1
## 714 Deficient Encapsulation,ar1
## 715 Deficient Encapsulation,ar1
## 716 Broken Modularization
## 717 Broken Modularization
## 718 Unnecessary Abstraction,ar1
## 719 Unnecessary Abstraction,ar1
## 720 Unutilized Abstraction,ar1
## 721 Unutilized Abstraction,ar1
## 722 Unnecessary Abstraction,ar1
## 723 Unnecessary Abstraction,ar1
## 724 Unutilized Abstraction,ar1
## 725 Unutilized Abstraction,ar1
## 726 Unutilized Abstraction,ar1,gf1
## 727 Unutilized Abstraction,ar1,gf1
## 728 Broken Modularization,ar1,gf1
## 729 Broken Modularization,ar1,gf1
## 730 Unutilized Abstraction,ar1
## 731 Unutilized Abstraction,ar1
## 732 Broken Modularization,ar1
## 733 Broken Modularization,ar1
## 734 Insufficient Modularization,ar1,et1,it1
## 735 Insufficient Modularization,ar1,et1,it1
## 736 Unutilized Abstraction
## 737 Unutilized Abstraction
## 738 Unutilized Abstraction,ar1
## 739 Unutilized Abstraction,ar1
## 740 Feature Envy,ar1,mg1,ro1
## 741 Feature Envy,ar1,mg1,ro1
## 742 Insufficient Modularization,ar1,et1,it1,gf1
## 743 Insufficient Modularization,ar1,et1,it1,gf1
## 744 Insufficient Modularization,ar1,et1,it1,gf1
## 745 Insufficient Modularization,ar1,et1,it1,gf1
## 746 Insufficient Modularization,ar1,et1,it1,gf1
## 747 Insufficient Modularization,ar1,et1,it1,gf1
## 748 Insufficient Modularization,ar1,et1,it1,gf1
## 749 Insufficient Modularization,ar1,et1,it1,gf1
## 750 Insufficient Modularization,ar1,et1,it1,gf1
## 751 Insufficient Modularization,ar1,et1,it1,gf1
## 752 Insufficient Modularization,ar1,et1,it1,gf1
## 753 Insufficient Modularization,ar1,et1,it1,gf1
## 754 Cyclically-dependent Modularization,et1
## 755 Cyclically-dependent Modularization,et1
## 756 Cyclically-dependent Modularization,et1
## 757 Cyclically-dependent Modularization,et1
## 758 Cyclically-dependent Modularization,et1
## 759 Cyclically-dependent Modularization,et1
## 760 Cyclically-dependent Modularization,et1
## 761 Cyclically-dependent Modularization,et1
## 762 Cyclically-dependent Modularization,et1
## 763 Cyclically-dependent Modularization,et1
## 764 Cyclically-dependent Modularization,et1
## 765 Cyclically-dependent Modularization,et1
## 766 Cyclically-dependent Modularization,et1
## 767 Cyclically-dependent Modularization,et1
## 768 Cyclically-dependent Modularization,ar1,et1
## 769 Cyclically-dependent Modularization,ar1,et1
## 770 Cyclically-dependent Modularization,ar1,et1
## 771 Cyclically-dependent Modularization,ar1,et1
## 772 Cyclically-dependent Modularization,ar1,et1
## 773 Cyclically-dependent Modularization,ar1,et1
## 774 Cyclically-dependent Modularization,ar1,et1
## 775 Cyclically-dependent Modularization,ar1,et1
## 776 Cyclically-dependent Modularization,ar1,et1
## 777 Cyclically-dependent Modularization,ar1,et1
## 778 Cyclically-dependent Modularization,ar1,et1
## 779 Cyclically-dependent Modularization,ar1,et1
## 780 Cyclically-dependent Modularization,ar1,et1
## 781 Cyclically-dependent Modularization,ar1,et1
## 782 Unnecessary Abstraction,ar1
## 783 Unnecessary Abstraction,ar1
## 784 Unnecessary Abstraction,ar1
## 785 Unnecessary Abstraction,ar1
## 786 Unutilized Abstraction,ar1
## 787 Unutilized Abstraction,ar1
## 788 Unutilized Abstraction,ar1
## 789 Unutilized Abstraction,ar1
## 790 Unutilized Abstraction,ar1
## 791 Unutilized Abstraction,ar1
## 792 Unutilized Abstraction,ar1
## 793 Unutilized Abstraction,ar1
## 794 Broken Hierarchy,ar1
## 795 Broken Hierarchy,ar1
## 796 Unutilized Abstraction,ar1
## 797 Unutilized Abstraction,ar1
## 798 Broken Hierarchy,ar1
## 799 Broken Hierarchy,ar1
## 800 Unnecessary Abstraction,ar1
## 801 Unnecessary Abstraction,ar1
## 802 Unutilized Abstraction,ar1
## 803 Unutilized Abstraction,ar1
## 804 Unutilized Abstraction,ar1
## 805 Unutilized Abstraction,ar1
## 806 Broken Hierarchy,ar1
## 807 Broken Hierarchy,ar1
## 808 Unnecessary Abstraction,ar1
## 809 Unnecessary Abstraction,ar1
## 810 Unutilized Abstraction,ar1
## 811 Unutilized Abstraction,ar1
## 812 Unutilized Abstraction,ar1,et1,gf1
## 813 Unutilized Abstraction,ar1,et1,gf1
## 814 Unutilized Abstraction,ar1
## 815 Unutilized Abstraction,ar1
## 816 Broken Hierarchy,ar1
## 817 Broken Hierarchy,ar1
## 818 Unutilized Abstraction,ar1
## 819 Unutilized Abstraction,ar1
## 820 Unnecessary Abstraction,ar1,gf1
## 821 Unnecessary Abstraction,ar1,gf1
## 822 Unutilized Abstraction,ar1,gf1
## 823 Unutilized Abstraction,ar1,gf1
## 824 Unutilized Abstraction,ar1,gf1
## 825 Unutilized Abstraction,ar1,gf1
## 826 Unutilized Abstraction,ar1
## 827 Unutilized Abstraction,ar1
## 828 Broken Hierarchy,ar1
## 829 Broken Hierarchy,ar1
## 830 Unutilized Abstraction,et1,it1
## 831 Unutilized Abstraction,et1,it1
## 832 Unutilized Abstraction,ar1
## 833 Unutilized Abstraction,ar1
## 834 Unutilized Abstraction,ar1
## 835 Unutilized Abstraction,ar1
## 836 Deficient Encapsulation,ar1
## 837 Deficient Encapsulation,ar1
## 838 Unutilized Abstraction,ar1
## 839 Unutilized Abstraction,ar1
## 840 Deficient Encapsulation,ar1
## 841 Deficient Encapsulation,ar1
## 842 Deficient Encapsulation,ar1
## 843 Deficient Encapsulation,ar1
## 844 Unutilized Abstraction,ar1
## 845 Unutilized Abstraction,ar1
## 846 Deficient Encapsulation,ar1
## 847 Deficient Encapsulation,ar1
## 848 Unnecessary Abstraction,ar1
## 849 Unnecessary Abstraction,ar1
## 850 Unutilized Abstraction,ar1
## 851 Unutilized Abstraction,ar1
## 852 Deficient Encapsulation,ar1
## 853 Deficient Encapsulation,ar1
## 854 Unnecessary Abstraction,ar1
## 855 Unnecessary Abstraction,ar1
## 856 Deficient Encapsulation,ar1
## 857 Deficient Encapsulation,ar1
## 858 Unnecessary Abstraction,ar1
## 859 Unnecessary Abstraction,ar1
## 860 Deficient Encapsulation,ar1
## 861 Deficient Encapsulation,ar1
## 862 Unnecessary Abstraction,ar1
## 863 Unnecessary Abstraction,ar1
## 864 Unutilized Abstraction,ar1
## 865 Unutilized Abstraction,ar1
## 866 Deficient Encapsulation,ar1
## 867 Deficient Encapsulation,ar1
## 868 Broken Modularization,ar1
## 869 Broken Modularization,ar1
## 870 Unutilized Abstraction,ar1,et1,gf1
## 871 Unutilized Abstraction,ar1,et1,gf1
## 872 Unnecessary Abstraction,ar1
## 873 Unnecessary Abstraction,ar1
## 874 Unutilized Abstraction,ar1
## 875 Unutilized Abstraction,ar1
## 876 Deficient Encapsulation,ar1
## 877 Deficient Encapsulation,ar1
## 878 Broken Modularization,ar1
## 879 Broken Modularization,ar1
## 880 Deficient Encapsulation,ar1
## 881 Deficient Encapsulation,ar1
## 882 Broken Modularization
## 883 Broken Modularization
## 884 Unnecessary Abstraction,ar1
## 885 Unnecessary Abstraction,ar1
## 886 Unutilized Abstraction,ar1
## 887 Unutilized Abstraction,ar1
## 888 Unnecessary Abstraction,ar1
## 889 Unnecessary Abstraction,ar1
## 890 Unutilized Abstraction,ar1
## 891 Unutilized Abstraction,ar1
## 892 Unutilized Abstraction,ar1,gf1
## 893 Unutilized Abstraction,ar1,gf1
## 894 Broken Modularization,ar1,gf1
## 895 Broken Modularization,ar1,gf1
## 896 Unutilized Abstraction,ar1
## 897 Unutilized Abstraction,ar1
## 898 Unutilized Abstraction,ar1
## 899 Unutilized Abstraction,ar1
## 900 Unutilized Abstraction,ar1
## 901 Unutilized Abstraction,ar1
## 902 Broken Modularization,ar1
## 903 Broken Modularization,ar1
## 904 Insufficient Modularization,ar1,et1,it1
## 905 Insufficient Modularization,ar1,et1,it1
## 906 Unutilized Abstraction,ar1
## 907 Unutilized Abstraction,ar1
## 908 Multifaceted Abstraction,ar1,et1,it1,gf1
## 909 Multifaceted Abstraction,ar1,et1,it1,gf1
## 910 Deficient Encapsulation,ar1,et1,it1,gf1
## 911 Deficient Encapsulation,ar1,et1,it1,gf1
## 912 Feature Envy,ar1,mg1,ro1
## 913 Feature Envy,ar1,mg1,ro1
## 914 Insufficient Modularization,ar1,et1,it1,gf1
## 915 Insufficient Modularization,ar1,et1,it1,gf1
## 916 Insufficient Modularization,ar1,et1,it1,gf1
## 917 Insufficient Modularization,ar1,et1,it1,gf1
## 918 Insufficient Modularization,ar1,et1,it1,gf1
## 919 Insufficient Modularization,ar1,et1,it1,gf1
## 920 Insufficient Modularization,ar1,et1,it1,gf1
## 921 Insufficient Modularization,ar1,et1,it1,gf1
## 922 Insufficient Modularization,ar1,et1,it1,gf1
## 923 Insufficient Modularization,ar1,et1,it1,gf1
## 924 Insufficient Modularization,ar1,et1,it1,gf1
## 925 Insufficient Modularization,ar1,et1,it1,gf1
## 926 Cyclically-dependent Modularization,et1
## 927 Cyclically-dependent Modularization,et1
## 928 Cyclically-dependent Modularization,et1
## 929 Cyclically-dependent Modularization,et1
## 930 Cyclically-dependent Modularization,et1
## 931 Cyclically-dependent Modularization,et1
## 932 Cyclically-dependent Modularization,et1
## 933 Cyclically-dependent Modularization,et1
## 934 Cyclically-dependent Modularization,et1
## 935 Cyclically-dependent Modularization,et1
## 936 Cyclically-dependent Modularization,et1
## 937 Cyclically-dependent Modularization,et1
## 938 Cyclically-dependent Modularization,et1
## 939 Cyclically-dependent Modularization,et1
## 940 Cyclically-dependent Modularization,ar1,et1
## 941 Cyclically-dependent Modularization,ar1,et1
## 942 Cyclically-dependent Modularization,ar1,et1
## 943 Cyclically-dependent Modularization,ar1,et1
## 944 Cyclically-dependent Modularization,ar1,et1
## 945 Cyclically-dependent Modularization,ar1,et1
## 946 Cyclically-dependent Modularization,ar1,et1
## 947 Cyclically-dependent Modularization,ar1,et1
## 948 Cyclically-dependent Modularization,ar1,et1
## 949 Cyclically-dependent Modularization,ar1,et1
## 950 Cyclically-dependent Modularization,ar1,et1
## 951 Cyclically-dependent Modularization,ar1,et1
## 952 Cyclically-dependent Modularization,ar1,et1
## 953 Cyclically-dependent Modularization,ar1,et1
## 954 Unnecessary Abstraction,ar1
## 955 Unnecessary Abstraction,ar1
## 956 Unnecessary Abstraction,ar1
## 957 Unnecessary Abstraction,ar1
## 958 Unutilized Abstraction,ar1
## 959 Unutilized Abstraction,ar1
## 960 Unutilized Abstraction,ar1
## 961 Unutilized Abstraction,ar1
## 962 Unutilized Abstraction,ar1
## 963 Unutilized Abstraction,ar1
## 964 Unutilized Abstraction,ar1
## 965 Unutilized Abstraction,ar1
## 966 Broken Hierarchy,ar1
## 967 Broken Hierarchy,ar1
## 968 Unutilized Abstraction,ar1
## 969 Unutilized Abstraction,ar1
## 970 Broken Hierarchy,ar1
## 971 Broken Hierarchy,ar1
## 972 Unnecessary Abstraction,ar1
## 973 Unnecessary Abstraction,ar1
## 974 Unutilized Abstraction,ar1
## 975 Unutilized Abstraction,ar1
## 976 Unutilized Abstraction,ar1
## 977 Unutilized Abstraction,ar1
## 978 Broken Hierarchy,ar1
## 979 Broken Hierarchy,ar1
## 980 Unnecessary Abstraction,ar1
## 981 Unnecessary Abstraction,ar1
## 982 Unutilized Abstraction,ar1
## 983 Unutilized Abstraction,ar1
## 984 Unutilized Abstraction,ar1,et1,gf1
## 985 Unutilized Abstraction,ar1,et1,gf1
## 986 Unutilized Abstraction,ar1
## 987 Unutilized Abstraction,ar1
## 988 Broken Hierarchy,ar1
## 989 Broken Hierarchy,ar1
## 990 Unutilized Abstraction,ar1
## 991 Unutilized Abstraction,ar1
## 992 Unnecessary Abstraction,ar1,gf1
## 993 Unnecessary Abstraction,ar1,gf1
## 994 Unutilized Abstraction,ar1,gf1
## 995 Unutilized Abstraction,ar1,gf1
## 996 Unutilized Abstraction,ar1,gf1
## 997 Unutilized Abstraction,ar1,gf1
## 998 Unutilized Abstraction,ar1
## 999 Unutilized Abstraction,ar1
## 1000 Broken Hierarchy,ar1
## 1001 Broken Hierarchy,ar1
## 1002 Unutilized Abstraction,et1,it1
## 1003 Unutilized Abstraction,et1,it1
## 1004 Unutilized Abstraction,ar1
## 1005 Unutilized Abstraction,ar1
## 1006 Unutilized Abstraction,ar1
## 1007 Unutilized Abstraction,ar1
## 1008 Deficient Encapsulation,ar1
## 1009 Deficient Encapsulation,ar1
## 1010 Unutilized Abstraction,ar1
## 1011 Unutilized Abstraction,ar1
## 1012 Deficient Encapsulation,ar1
## 1013 Deficient Encapsulation,ar1
## 1014 Deficient Encapsulation,ar1
## 1015 Deficient Encapsulation,ar1
## 1016 Unutilized Abstraction,ar1
## 1017 Unutilized Abstraction,ar1
## 1018 Deficient Encapsulation,ar1
## 1019 Deficient Encapsulation,ar1
## 1020 Unnecessary Abstraction,ar1
## 1021 Unnecessary Abstraction,ar1
## 1022 Unutilized Abstraction,ar1
## 1023 Unutilized Abstraction,ar1
## 1024 Deficient Encapsulation,ar1
## 1025 Deficient Encapsulation,ar1
## 1026 Unnecessary Abstraction,ar1
## 1027 Unnecessary Abstraction,ar1
## 1028 Deficient Encapsulation,ar1
## 1029 Deficient Encapsulation,ar1
## 1030 Unnecessary Abstraction,ar1
## 1031 Unnecessary Abstraction,ar1
## 1032 Deficient Encapsulation,ar1
## 1033 Deficient Encapsulation,ar1
## 1034 Unnecessary Abstraction,ar1
## 1035 Unnecessary Abstraction,ar1
## 1036 Unutilized Abstraction,ar1
## 1037 Unutilized Abstraction,ar1
## 1038 Deficient Encapsulation,ar1
## 1039 Deficient Encapsulation,ar1
## 1040 Broken Modularization,ar1
## 1041 Broken Modularization,ar1
## 1042 Unutilized Abstraction,ar1,et1,gf1
## 1043 Unutilized Abstraction,ar1,et1,gf1
## 1044 Unnecessary Abstraction,ar1
## 1045 Unnecessary Abstraction,ar1
## 1046 Unutilized Abstraction,ar1
## 1047 Unutilized Abstraction,ar1
## 1048 Deficient Encapsulation,ar1
## 1049 Deficient Encapsulation,ar1
## 1050 Broken Modularization,ar1
## 1051 Broken Modularization,ar1
## 1052 Deficient Encapsulation,ar1
## 1053 Deficient Encapsulation,ar1
## 1054 Broken Modularization
## 1055 Broken Modularization
## 1056 Unnecessary Abstraction,ar1
## 1057 Unnecessary Abstraction,ar1
## 1058 Unutilized Abstraction,ar1
## 1059 Unutilized Abstraction,ar1
## 1060 Unnecessary Abstraction,ar1
## 1061 Unnecessary Abstraction,ar1
## 1062 Unutilized Abstraction,ar1
## 1063 Unutilized Abstraction,ar1
## 1064 Unutilized Abstraction,ar1,gf1
## 1065 Unutilized Abstraction,ar1,gf1
## 1066 Broken Modularization,ar1,gf1
## 1067 Broken Modularization,ar1,gf1
## 1068 Unutilized Abstraction,ar1
## 1069 Unutilized Abstraction,ar1
## 1070 Unutilized Abstraction,ar1
## 1071 Unutilized Abstraction,ar1
## 1072 Unutilized Abstraction,ar1
## 1073 Unutilized Abstraction,ar1
## 1074 Broken Modularization,ar1
## 1075 Broken Modularization,ar1
## 1076 Insufficient Modularization,ar1,et1,it1
## 1077 Insufficient Modularization,ar1,et1,it1
## 1078 Unutilized Abstraction,ar1
## 1079 Unutilized Abstraction,ar1
## 1080 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1081 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1082 Deficient Encapsulation,ar1,et1,it1,gf1
## 1083 Deficient Encapsulation,ar1,et1,it1,gf1
## 1084 Feature Envy,ar1,mg1,ro1
## 1085 Feature Envy,ar1,mg1,ro1
## 1086 Insufficient Modularization,ar1,et1,it1,gf1
## 1087 Insufficient Modularization,ar1,et1,it1,gf1
## 1088 Insufficient Modularization,ar1,et1,it1,gf1
## 1089 Insufficient Modularization,ar1,et1,it1,gf1
## 1090 Insufficient Modularization,ar1,et1,it1,gf1
## 1091 Insufficient Modularization,ar1,et1,it1,gf1
## 1092 Insufficient Modularization,ar1,et1,it1,gf1
## 1093 Insufficient Modularization,ar1,et1,it1,gf1
## 1094 Insufficient Modularization,ar1,et1,it1,gf1
## 1095 Insufficient Modularization,ar1,et1,it1,gf1
## 1096 Insufficient Modularization,ar1,et1,it1,gf1
## 1097 Insufficient Modularization,ar1,et1,it1,gf1
## 1098 Cyclically-dependent Modularization,et1
## 1099 Cyclically-dependent Modularization,et1
## 1100 Cyclically-dependent Modularization,et1
## 1101 Cyclically-dependent Modularization,et1
## 1102 Cyclically-dependent Modularization,et1
## 1103 Cyclically-dependent Modularization,et1
## 1104 Cyclically-dependent Modularization,et1
## 1105 Cyclically-dependent Modularization,et1
## 1106 Cyclically-dependent Modularization,et1
## 1107 Cyclically-dependent Modularization,et1
## 1108 Cyclically-dependent Modularization,et1
## 1109 Cyclically-dependent Modularization,et1
## 1110 Cyclically-dependent Modularization,et1
## 1111 Cyclically-dependent Modularization,et1
## 1112 Cyclically-dependent Modularization,ar1,et1
## 1113 Cyclically-dependent Modularization,ar1,et1
## 1114 Cyclically-dependent Modularization,ar1,et1
## 1115 Cyclically-dependent Modularization,ar1,et1
## 1116 Cyclically-dependent Modularization,ar1,et1
## 1117 Cyclically-dependent Modularization,ar1,et1
## 1118 Cyclically-dependent Modularization,ar1,et1
## 1119 Cyclically-dependent Modularization,ar1,et1
## 1120 Cyclically-dependent Modularization,ar1,et1
## 1121 Cyclically-dependent Modularization,ar1,et1
## 1122 Cyclically-dependent Modularization,ar1,et1
## 1123 Cyclically-dependent Modularization,ar1,et1
## 1124 Cyclically-dependent Modularization,ar1,et1
## 1125 Cyclically-dependent Modularization,ar1,et1
## 1126 Unnecessary Abstraction,ar1
## 1127 Unnecessary Abstraction,ar1
## 1128 Unnecessary Abstraction,ar1
## 1129 Unnecessary Abstraction,ar1
## 1130 Unutilized Abstraction,ar1
## 1131 Unutilized Abstraction,ar1
## 1132 Unutilized Abstraction,ar1
## 1133 Unutilized Abstraction,ar1
## 1134 Unutilized Abstraction,ar1
## 1135 Unutilized Abstraction,ar1
## 1136 Unutilized Abstraction,ar1
## 1137 Unutilized Abstraction,ar1
## 1138 Broken Hierarchy,ar1
## 1139 Broken Hierarchy,ar1
## 1140 Unutilized Abstraction,ar1
## 1141 Unutilized Abstraction,ar1
## 1142 Broken Hierarchy,ar1
## 1143 Broken Hierarchy,ar1
## 1144 Unnecessary Abstraction,ar1
## 1145 Unnecessary Abstraction,ar1
## 1146 Unutilized Abstraction,ar1
## 1147 Unutilized Abstraction,ar1
## 1148 Unutilized Abstraction,ar1
## 1149 Unutilized Abstraction,ar1
## 1150 Broken Hierarchy,ar1
## 1151 Broken Hierarchy,ar1
## 1152 Unnecessary Abstraction,ar1
## 1153 Unnecessary Abstraction,ar1
## 1154 Unutilized Abstraction,ar1
## 1155 Unutilized Abstraction,ar1
## 1156 Unutilized Abstraction,ar1,et1,gf1
## 1157 Unutilized Abstraction,ar1,et1,gf1
## 1158 Unutilized Abstraction,ar1
## 1159 Unutilized Abstraction,ar1
## 1160 Broken Hierarchy,ar1
## 1161 Broken Hierarchy,ar1
## 1162 Unutilized Abstraction,ar1
## 1163 Unutilized Abstraction,ar1
## 1164 Unnecessary Abstraction,ar1,gf1
## 1165 Unnecessary Abstraction,ar1,gf1
## 1166 Unutilized Abstraction,ar1,gf1
## 1167 Unutilized Abstraction,ar1,gf1
## 1168 Unutilized Abstraction,ar1,gf1
## 1169 Unutilized Abstraction,ar1,gf1
## 1170 Unutilized Abstraction,ar1
## 1171 Unutilized Abstraction,ar1
## 1172 Broken Hierarchy,ar1
## 1173 Broken Hierarchy,ar1
## 1174 Unutilized Abstraction,et1,it1
## 1175 Unutilized Abstraction,et1,it1
## 1176 Unutilized Abstraction,ar1
## 1177 Unutilized Abstraction,ar1
## 1178 Unutilized Abstraction,ar1
## 1179 Unutilized Abstraction,ar1
## 1180 Deficient Encapsulation,ar1
## 1181 Deficient Encapsulation,ar1
## 1182 Unutilized Abstraction,ar1
## 1183 Unutilized Abstraction,ar1
## 1184 Deficient Encapsulation,ar1
## 1185 Deficient Encapsulation,ar1
## 1186 Deficient Encapsulation,ar1
## 1187 Deficient Encapsulation,ar1
## 1188 Unutilized Abstraction,ar1
## 1189 Unutilized Abstraction,ar1
## 1190 Deficient Encapsulation,ar1
## 1191 Deficient Encapsulation,ar1
## 1192 Unnecessary Abstraction,ar1
## 1193 Unnecessary Abstraction,ar1
## 1194 Unutilized Abstraction,ar1
## 1195 Unutilized Abstraction,ar1
## 1196 Deficient Encapsulation,ar1
## 1197 Deficient Encapsulation,ar1
## 1198 Unnecessary Abstraction,ar1
## 1199 Unnecessary Abstraction,ar1
## 1200 Deficient Encapsulation,ar1
## 1201 Deficient Encapsulation,ar1
## 1202 Unnecessary Abstraction,ar1
## 1203 Unnecessary Abstraction,ar1
## 1204 Deficient Encapsulation,ar1
## 1205 Deficient Encapsulation,ar1
## 1206 Unnecessary Abstraction,ar1
## 1207 Unnecessary Abstraction,ar1
## 1208 Unutilized Abstraction,ar1
## 1209 Unutilized Abstraction,ar1
## 1210 Deficient Encapsulation,ar1
## 1211 Deficient Encapsulation,ar1
## 1212 Broken Modularization,ar1
## 1213 Broken Modularization,ar1
## 1214 Unutilized Abstraction,ar1,et1,gf1
## 1215 Unutilized Abstraction,ar1,et1,gf1
## 1216 Unnecessary Abstraction,ar1
## 1217 Unnecessary Abstraction,ar1
## 1218 Unutilized Abstraction,ar1
## 1219 Unutilized Abstraction,ar1
## 1220 Deficient Encapsulation,ar1
## 1221 Deficient Encapsulation,ar1
## 1222 Broken Modularization,ar1
## 1223 Broken Modularization,ar1
## 1224 Deficient Encapsulation,ar1
## 1225 Deficient Encapsulation,ar1
## 1226 Deficient Encapsulation,ar1
## 1227 Deficient Encapsulation,ar1
## 1228 Broken Modularization
## 1229 Broken Modularization
## 1230 Unnecessary Abstraction,ar1
## 1231 Unnecessary Abstraction,ar1
## 1232 Unutilized Abstraction,ar1
## 1233 Unutilized Abstraction,ar1
## 1234 Unnecessary Abstraction,ar1
## 1235 Unnecessary Abstraction,ar1
## 1236 Unutilized Abstraction,ar1
## 1237 Unutilized Abstraction,ar1
## 1238 Unutilized Abstraction,ar1,gf1
## 1239 Unutilized Abstraction,ar1,gf1
## 1240 Broken Modularization,ar1,gf1
## 1241 Broken Modularization,ar1,gf1
## 1242 Unutilized Abstraction,ar1
## 1243 Unutilized Abstraction,ar1
## 1244 Deficient Encapsulation,ar1
## 1245 Deficient Encapsulation,ar1
## 1246 Unutilized Abstraction,ar1
## 1247 Unutilized Abstraction,ar1
## 1248 Unutilized Abstraction,ar1
## 1249 Unutilized Abstraction,ar1
## 1250 Broken Modularization,ar1
## 1251 Broken Modularization,ar1
## 1252 Insufficient Modularization,ar1,et1,it1
## 1253 Insufficient Modularization,ar1,et1,it1
## 1254 Unutilized Abstraction,ar1
## 1255 Unutilized Abstraction,ar1
## 1256 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1257 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1258 Deficient Encapsulation,ar1,et1,it1,gf1
## 1259 Deficient Encapsulation,ar1,et1,it1,gf1
## 1260 Feature Envy,ar1,mg1,ro1
## 1261 Feature Envy,ar1,mg1,ro1
## 1262 Insufficient Modularization,ar1,et1,it1,gf1
## 1263 Insufficient Modularization,ar1,et1,it1,gf1
## 1264 Insufficient Modularization,ar1,et1,it1,gf1
## 1265 Insufficient Modularization,ar1,et1,it1,gf1
## 1266 Insufficient Modularization,ar1,et1,it1,gf1
## 1267 Insufficient Modularization,ar1,et1,it1,gf1
## 1268 Insufficient Modularization,ar1,et1,it1,gf1
## 1269 Insufficient Modularization,ar1,et1,it1,gf1
## 1270 Insufficient Modularization,ar1,et1,it1,gf1
## 1271 Insufficient Modularization,ar1,et1,it1,gf1
## 1272 Insufficient Modularization,ar1,et1,it1,gf1
## 1273 Insufficient Modularization,ar1,et1,it1,gf1
## 1274 Cyclically-dependent Modularization,et1
## 1275 Cyclically-dependent Modularization,et1
## 1276 Cyclically-dependent Modularization,et1
## 1277 Cyclically-dependent Modularization,et1
## 1278 Cyclically-dependent Modularization,et1
## 1279 Cyclically-dependent Modularization,et1
## 1280 Cyclically-dependent Modularization,et1
## 1281 Cyclically-dependent Modularization,et1
## 1282 Cyclically-dependent Modularization,et1
## 1283 Cyclically-dependent Modularization,et1
## 1284 Cyclically-dependent Modularization,et1
## 1285 Cyclically-dependent Modularization,et1
## 1286 Cyclically-dependent Modularization,et1
## 1287 Cyclically-dependent Modularization,et1
## 1288 Cyclically-dependent Modularization,ar1,et1
## 1289 Cyclically-dependent Modularization,ar1,et1
## 1290 Cyclically-dependent Modularization,ar1,et1
## 1291 Cyclically-dependent Modularization,ar1,et1
## 1292 Cyclically-dependent Modularization,ar1,et1
## 1293 Cyclically-dependent Modularization,ar1,et1
## 1294 Cyclically-dependent Modularization,ar1,et1
## 1295 Cyclically-dependent Modularization,ar1,et1
## 1296 Cyclically-dependent Modularization,ar1,et1
## 1297 Cyclically-dependent Modularization,ar1,et1
## 1298 Cyclically-dependent Modularization,ar1,et1
## 1299 Cyclically-dependent Modularization,ar1,et1
## 1300 Cyclically-dependent Modularization,ar1,et1
## 1301 Cyclically-dependent Modularization,ar1,et1
## 1302 Unnecessary Abstraction,ar1
## 1303 Unnecessary Abstraction,ar1
## 1304 Unnecessary Abstraction,ar1
## 1305 Unnecessary Abstraction,ar1
## 1306 Unutilized Abstraction,ar1
## 1307 Unutilized Abstraction,ar1
## 1308 Unutilized Abstraction,ar1
## 1309 Unutilized Abstraction,ar1
## 1310 Broken Hierarchy,ar1
## 1311 Broken Hierarchy,ar1
## 1312 Unutilized Abstraction,ar1
## 1313 Unutilized Abstraction,ar1
## 1314 Broken Hierarchy,ar1
## 1315 Broken Hierarchy,ar1
## 1316 Unnecessary Abstraction,ar1
## 1317 Unnecessary Abstraction,ar1
## 1318 Unutilized Abstraction,ar1
## 1319 Unutilized Abstraction,ar1
## 1320 Unutilized Abstraction,ar1
## 1321 Unutilized Abstraction,ar1
## 1322 Broken Hierarchy,ar1
## 1323 Broken Hierarchy,ar1
## 1324 Unnecessary Abstraction,ar1
## 1325 Unnecessary Abstraction,ar1
## 1326 Unutilized Abstraction,ar1
## 1327 Unutilized Abstraction,ar1
## 1328 Unutilized Abstraction,ar1,et1,gf1
## 1329 Unutilized Abstraction,ar1,et1,gf1
## 1330 Unutilized Abstraction,ar1
## 1331 Unutilized Abstraction,ar1
## 1332 Broken Hierarchy,ar1
## 1333 Broken Hierarchy,ar1
## 1334 Unutilized Abstraction,ar1
## 1335 Unutilized Abstraction,ar1
## 1336 Unnecessary Abstraction,ar1,gf1
## 1337 Unnecessary Abstraction,ar1,gf1
## 1338 Unutilized Abstraction,ar1,gf1
## 1339 Unutilized Abstraction,ar1,gf1
## 1340 Multifaceted Abstraction,ar1,gf1
## 1341 Multifaceted Abstraction,ar1,gf1
## 1342 Unutilized Abstraction,ar1,gf1
## 1343 Unutilized Abstraction,ar1,gf1
## 1344 Unutilized Abstraction,ar1
## 1345 Unutilized Abstraction,ar1
## 1346 Broken Hierarchy,ar1
## 1347 Broken Hierarchy,ar1
## 1348 Unutilized Abstraction,et1,it1
## 1349 Unutilized Abstraction,et1,it1
## 1350 Unutilized Abstraction,ar1
## 1351 Unutilized Abstraction,ar1
## 1352 Unutilized Abstraction,ar1
## 1353 Unutilized Abstraction,ar1
## 1354 Deficient Encapsulation,ar1
## 1355 Deficient Encapsulation,ar1
## 1356 Unutilized Abstraction,ar1
## 1357 Unutilized Abstraction,ar1
## 1358 Deficient Encapsulation,ar1
## 1359 Deficient Encapsulation,ar1
## 1360 Deficient Encapsulation,ar1
## 1361 Deficient Encapsulation,ar1
## 1362 Unutilized Abstraction,ar1
## 1363 Unutilized Abstraction,ar1
## 1364 Deficient Encapsulation,ar1
## 1365 Deficient Encapsulation,ar1
## 1366 Unnecessary Abstraction,ar1
## 1367 Unnecessary Abstraction,ar1
## 1368 Unutilized Abstraction,ar1
## 1369 Unutilized Abstraction,ar1
## 1370 Deficient Encapsulation,ar1
## 1371 Deficient Encapsulation,ar1
## 1372 Unnecessary Abstraction,ar1
## 1373 Unnecessary Abstraction,ar1
## 1374 Deficient Encapsulation,ar1
## 1375 Deficient Encapsulation,ar1
## 1376 Unnecessary Abstraction,ar1
## 1377 Unnecessary Abstraction,ar1
## 1378 Deficient Encapsulation,ar1
## 1379 Deficient Encapsulation,ar1
## 1380 Unnecessary Abstraction,ar1
## 1381 Unnecessary Abstraction,ar1
## 1382 Unnecessary Abstraction,ar1
## 1383 Unnecessary Abstraction,ar1
## 1384 Unutilized Abstraction,ar1
## 1385 Unutilized Abstraction,ar1
## 1386 Deficient Encapsulation,ar1
## 1387 Deficient Encapsulation,ar1
## 1388 Broken Modularization,ar1
## 1389 Broken Modularization,ar1
## 1390 Unutilized Abstraction,ar1,et1,gf1
## 1391 Unutilized Abstraction,ar1,et1,gf1
## 1392 Unnecessary Abstraction,ar1
## 1393 Unnecessary Abstraction,ar1
## 1394 Unutilized Abstraction,ar1
## 1395 Unutilized Abstraction,ar1
## 1396 Deficient Encapsulation,ar1
## 1397 Deficient Encapsulation,ar1
## 1398 Broken Modularization,ar1
## 1399 Broken Modularization,ar1
## 1400 Deficient Encapsulation,ar1
## 1401 Deficient Encapsulation,ar1
## 1402 Deficient Encapsulation,ar1
## 1403 Deficient Encapsulation,ar1
## 1404 Broken Modularization
## 1405 Broken Modularization
## 1406 Unutilized Abstraction,ar1
## 1407 Unutilized Abstraction,ar1
## 1408 Unnecessary Abstraction,ar1
## 1409 Unnecessary Abstraction,ar1
## 1410 Unutilized Abstraction,ar1
## 1411 Unutilized Abstraction,ar1
## 1412 Broken Modularization,ar1
## 1413 Broken Modularization,ar1
## 1414 Unutilized Abstraction,ar1
## 1415 Unutilized Abstraction,ar1
## 1416 Unnecessary Abstraction,ar1
## 1417 Unnecessary Abstraction,ar1
## 1418 Unutilized Abstraction,ar1
## 1419 Unutilized Abstraction,ar1
## 1420 Unutilized Abstraction,ar1,gf1
## 1421 Unutilized Abstraction,ar1,gf1
## 1422 Broken Modularization,ar1,gf1
## 1423 Broken Modularization,ar1,gf1
## 1424 Unutilized Abstraction,ar1
## 1425 Unutilized Abstraction,ar1
## 1426 Deficient Encapsulation,ar1
## 1427 Deficient Encapsulation,ar1
## 1428 Deficient Encapsulation,ar1
## 1429 Deficient Encapsulation,ar1
## 1430 Unutilized Abstraction,ar1
## 1431 Unutilized Abstraction,ar1
## 1432 Broken Modularization,ar1
## 1433 Broken Modularization,ar1
## 1434 Insufficient Modularization,ar1,et1,it1
## 1435 Insufficient Modularization,ar1,et1,it1
## 1436 Unutilized Abstraction,ar1
## 1437 Unutilized Abstraction,ar1
## 1438 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1439 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1440 Deficient Encapsulation,ar1,et1,it1,gf1
## 1441 Deficient Encapsulation,ar1,et1,it1,gf1
## 1442 Feature Envy,ar1,mg1,ro1
## 1443 Feature Envy,ar1,mg1,ro1
## 1444 Insufficient Modularization,ar1,et1,it1,gf1
## 1445 Insufficient Modularization,ar1,et1,it1,gf1
## 1446 Insufficient Modularization,ar1,et1,it1,gf1
## 1447 Insufficient Modularization,ar1,et1,it1,gf1
## 1448 Insufficient Modularization,ar1,et1,it1,gf1
## 1449 Insufficient Modularization,ar1,et1,it1,gf1
## 1450 Insufficient Modularization,ar1,et1,it1,gf1
## 1451 Insufficient Modularization,ar1,et1,it1,gf1
## 1452 Insufficient Modularization,ar1,et1,it1,gf1
## 1453 Insufficient Modularization,ar1,et1,it1,gf1
## 1454 Insufficient Modularization,ar1,et1,it1,gf1
## 1455 Insufficient Modularization,ar1,et1,it1,gf1
## 1456 Cyclically-dependent Modularization,et1
## 1457 Cyclically-dependent Modularization,et1
## 1458 Cyclically-dependent Modularization,et1
## 1459 Cyclically-dependent Modularization,et1
## 1460 Cyclically-dependent Modularization,et1
## 1461 Cyclically-dependent Modularization,et1
## 1462 Cyclically-dependent Modularization,et1
## 1463 Cyclically-dependent Modularization,et1
## 1464 Cyclically-dependent Modularization,et1
## 1465 Cyclically-dependent Modularization,et1
## 1466 Cyclically-dependent Modularization,et1
## 1467 Cyclically-dependent Modularization,et1
## 1468 Cyclically-dependent Modularization,et1
## 1469 Cyclically-dependent Modularization,et1
## 1470 Cyclically-dependent Modularization,ar1,et1
## 1471 Cyclically-dependent Modularization,ar1,et1
## 1472 Cyclically-dependent Modularization,ar1,et1
## 1473 Cyclically-dependent Modularization,ar1,et1
## 1474 Cyclically-dependent Modularization,ar1,et1
## 1475 Cyclically-dependent Modularization,ar1,et1
## 1476 Cyclically-dependent Modularization,ar1,et1
## 1477 Cyclically-dependent Modularization,ar1,et1
## 1478 Cyclically-dependent Modularization,ar1,et1
## 1479 Cyclically-dependent Modularization,ar1,et1
## 1480 Cyclically-dependent Modularization,ar1,et1
## 1481 Cyclically-dependent Modularization,ar1,et1
## 1482 Cyclically-dependent Modularization,ar1,et1
## 1483 Cyclically-dependent Modularization,ar1,et1
## 1484 Unnecessary Abstraction,ar1
## 1485 Unnecessary Abstraction,ar1
## 1486 Unnecessary Abstraction,ar1
## 1487 Unnecessary Abstraction,ar1
## 1488 Unutilized Abstraction,ar1
## 1489 Unutilized Abstraction,ar1
## 1490 Unutilized Abstraction,ar1
## 1491 Unutilized Abstraction,ar1
## 1492 Broken Hierarchy,ar1
## 1493 Broken Hierarchy,ar1
## 1494 Unutilized Abstraction,ar1
## 1495 Unutilized Abstraction,ar1
## 1496 Broken Hierarchy,ar1
## 1497 Broken Hierarchy,ar1
## 1498 Unnecessary Abstraction,ar1
## 1499 Unnecessary Abstraction,ar1
## 1500 Unutilized Abstraction,ar1
## 1501 Unutilized Abstraction,ar1
## 1502 Unutilized Abstraction,ar1
## 1503 Unutilized Abstraction,ar1
## 1504 Broken Hierarchy,ar1
## 1505 Broken Hierarchy,ar1
## 1506 Unnecessary Abstraction,ar1
## 1507 Unnecessary Abstraction,ar1
## 1508 Unutilized Abstraction,ar1
## 1509 Unutilized Abstraction,ar1
## 1510 Unutilized Abstraction,ar1,et1,gf1
## 1511 Unutilized Abstraction,ar1,et1,gf1
## 1512 Unutilized Abstraction,ar1
## 1513 Unutilized Abstraction,ar1
## 1514 Broken Hierarchy,ar1
## 1515 Broken Hierarchy,ar1
## 1516 Unutilized Abstraction,ar1
## 1517 Unutilized Abstraction,ar1
## 1518 Unnecessary Abstraction,ar1,gf1
## 1519 Unnecessary Abstraction,ar1,gf1
## 1520 Unutilized Abstraction,ar1,gf1
## 1521 Unutilized Abstraction,ar1,gf1
## 1522 Multifaceted Abstraction,ar1,gf1
## 1523 Multifaceted Abstraction,ar1,gf1
## 1524 Unutilized Abstraction,ar1,gf1
## 1525 Unutilized Abstraction,ar1,gf1
## 1526 Unutilized Abstraction,ar1
## 1527 Unutilized Abstraction,ar1
## 1528 Broken Hierarchy,ar1
## 1529 Broken Hierarchy,ar1
## 1530 Unutilized Abstraction,et1,it1
## 1531 Unutilized Abstraction,et1,it1
## 1532 Unutilized Abstraction,ar1
## 1533 Unutilized Abstraction,ar1
## 1534 Unutilized Abstraction,ar1
## 1535 Unutilized Abstraction,ar1
## 1536 Deficient Encapsulation,ar1
## 1537 Deficient Encapsulation,ar1
## 1538 Unutilized Abstraction,ar1
## 1539 Unutilized Abstraction,ar1
## 1540 Deficient Encapsulation,ar1
## 1541 Deficient Encapsulation,ar1
## 1542 Deficient Encapsulation,ar1
## 1543 Deficient Encapsulation,ar1
## 1544 Unutilized Abstraction,ar1
## 1545 Unutilized Abstraction,ar1
## 1546 Deficient Encapsulation,ar1
## 1547 Deficient Encapsulation,ar1
## 1548 Unnecessary Abstraction,ar1
## 1549 Unnecessary Abstraction,ar1
## 1550 Unutilized Abstraction,ar1
## 1551 Unutilized Abstraction,ar1
## 1552 Deficient Encapsulation,ar1
## 1553 Deficient Encapsulation,ar1
## 1554 Unnecessary Abstraction,ar1
## 1555 Unnecessary Abstraction,ar1
## 1556 Deficient Encapsulation,ar1
## 1557 Deficient Encapsulation,ar1
## 1558 Unnecessary Abstraction,ar1
## 1559 Unnecessary Abstraction,ar1
## 1560 Deficient Encapsulation,ar1
## 1561 Deficient Encapsulation,ar1
## 1562 Unnecessary Abstraction,ar1
## 1563 Unnecessary Abstraction,ar1
## 1564 Unnecessary Abstraction,ar1
## 1565 Unnecessary Abstraction,ar1
## 1566 Unutilized Abstraction,ar1
## 1567 Unutilized Abstraction,ar1
## 1568 Deficient Encapsulation,ar1
## 1569 Deficient Encapsulation,ar1
## 1570 Broken Modularization,ar1
## 1571 Broken Modularization,ar1
## 1572 Unutilized Abstraction,ar1,et1,gf1
## 1573 Unutilized Abstraction,ar1,et1,gf1
## 1574 Unnecessary Abstraction,ar1
## 1575 Unnecessary Abstraction,ar1
## 1576 Unutilized Abstraction,ar1
## 1577 Unutilized Abstraction,ar1
## 1578 Deficient Encapsulation,ar1
## 1579 Deficient Encapsulation,ar1
## 1580 Broken Modularization,ar1
## 1581 Broken Modularization,ar1
## 1582 Deficient Encapsulation,ar1
## 1583 Deficient Encapsulation,ar1
## 1584 Deficient Encapsulation,ar1
## 1585 Deficient Encapsulation,ar1
## 1586 Broken Modularization
## 1587 Broken Modularization
## 1588 Unutilized Abstraction,ar1
## 1589 Unutilized Abstraction,ar1
## 1590 Unnecessary Abstraction,ar1
## 1591 Unnecessary Abstraction,ar1
## 1592 Unutilized Abstraction,ar1
## 1593 Unutilized Abstraction,ar1
## 1594 Broken Modularization,ar1
## 1595 Broken Modularization,ar1
## 1596 Multifaceted Abstraction,ar1
## 1597 Multifaceted Abstraction,ar1
## 1598 Unutilized Abstraction,ar1
## 1599 Unutilized Abstraction,ar1
## 1600 Unnecessary Abstraction,ar1
## 1601 Unnecessary Abstraction,ar1
## 1602 Unutilized Abstraction,ar1
## 1603 Unutilized Abstraction,ar1
## 1604 Unutilized Abstraction,ar1,gf1
## 1605 Unutilized Abstraction,ar1,gf1
## 1606 Broken Modularization,ar1,gf1
## 1607 Broken Modularization,ar1,gf1
## 1608 Unutilized Abstraction,ar1
## 1609 Unutilized Abstraction,ar1
## 1610 Deficient Encapsulation,ar1
## 1611 Deficient Encapsulation,ar1
## 1612 Deficient Encapsulation,ar1
## 1613 Deficient Encapsulation,ar1
## 1614 Unutilized Abstraction,ar1
## 1615 Unutilized Abstraction,ar1
## 1616 Broken Modularization,ar1
## 1617 Broken Modularization,ar1
## 1618 Insufficient Modularization,ar1,et1,it1
## 1619 Insufficient Modularization,ar1,et1,it1
## 1620 Unutilized Abstraction,ar1
## 1621 Unutilized Abstraction,ar1
## 1622 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1623 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1624 Deficient Encapsulation,ar1,et1,it1,gf1
## 1625 Deficient Encapsulation,ar1,et1,it1,gf1
## 1626 Feature Envy,ar1,mg1,ro1
## 1627 Feature Envy,ar1,mg1,ro1
## 1628 Insufficient Modularization,ar1,et1,it1,gf1
## 1629 Insufficient Modularization,ar1,et1,it1,gf1
## 1630 Insufficient Modularization,ar1,et1,it1,gf1
## 1631 Insufficient Modularization,ar1,et1,it1,gf1
## 1632 Insufficient Modularization,ar1,et1,it1,gf1
## 1633 Insufficient Modularization,ar1,et1,it1,gf1
## 1634 Insufficient Modularization,ar1,et1,it1,gf1
## 1635 Insufficient Modularization,ar1,et1,it1,gf1
## 1636 Insufficient Modularization,ar1,et1,it1,gf1
## 1637 Insufficient Modularization,ar1,et1,it1,gf1
## 1638 Insufficient Modularization,ar1,et1,it1,gf1
## 1639 Insufficient Modularization,ar1,et1,it1,gf1
## 1640 Cyclically-dependent Modularization,et1
## 1641 Cyclically-dependent Modularization,et1
## 1642 Cyclically-dependent Modularization,et1
## 1643 Cyclically-dependent Modularization,et1
## 1644 Cyclically-dependent Modularization,et1
## 1645 Cyclically-dependent Modularization,et1
## 1646 Cyclically-dependent Modularization,et1
## 1647 Cyclically-dependent Modularization,et1
## 1648 Cyclically-dependent Modularization,et1
## 1649 Cyclically-dependent Modularization,et1
## 1650 Cyclically-dependent Modularization,et1
## 1651 Cyclically-dependent Modularization,et1
## 1652 Cyclically-dependent Modularization,et1
## 1653 Cyclically-dependent Modularization,et1
## 1654 Cyclically-dependent Modularization,ar1,et1
## 1655 Cyclically-dependent Modularization,ar1,et1
## 1656 Cyclically-dependent Modularization,ar1,et1
## 1657 Cyclically-dependent Modularization,ar1,et1
## 1658 Cyclically-dependent Modularization,ar1,et1
## 1659 Cyclically-dependent Modularization,ar1,et1
## 1660 Cyclically-dependent Modularization,ar1,et1
## 1661 Cyclically-dependent Modularization,ar1,et1
## 1662 Cyclically-dependent Modularization,ar1,et1
## 1663 Cyclically-dependent Modularization,ar1,et1
## 1664 Cyclically-dependent Modularization,ar1,et1
## 1665 Cyclically-dependent Modularization,ar1,et1
## 1666 Cyclically-dependent Modularization,ar1,et1
## 1667 Cyclically-dependent Modularization,ar1,et1
## 1668 Unnecessary Abstraction,ar1
## 1669 Unnecessary Abstraction,ar1
## 1670 Unnecessary Abstraction,ar1
## 1671 Unnecessary Abstraction,ar1
## 1672 Unutilized Abstraction,ar1
## 1673 Unutilized Abstraction,ar1
## 1674 Unutilized Abstraction,ar1
## 1675 Unutilized Abstraction,ar1
## 1676 Broken Hierarchy,ar1
## 1677 Broken Hierarchy,ar1
## 1678 Unutilized Abstraction,ar1
## 1679 Unutilized Abstraction,ar1
## 1680 Broken Hierarchy,ar1
## 1681 Broken Hierarchy,ar1
## 1682 Unnecessary Abstraction,ar1
## 1683 Unnecessary Abstraction,ar1
## 1684 Unutilized Abstraction,ar1
## 1685 Unutilized Abstraction,ar1
## 1686 Unutilized Abstraction,ar1
## 1687 Unutilized Abstraction,ar1
## 1688 Broken Hierarchy,ar1
## 1689 Broken Hierarchy,ar1
## 1690 Unnecessary Abstraction,ar1
## 1691 Unnecessary Abstraction,ar1
## 1692 Unutilized Abstraction,ar1
## 1693 Unutilized Abstraction,ar1
## 1694 Unutilized Abstraction,ar1,et1,gf1
## 1695 Unutilized Abstraction,ar1,et1,gf1
## 1696 Unutilized Abstraction,ar1
## 1697 Unutilized Abstraction,ar1
## 1698 Broken Hierarchy,ar1
## 1699 Broken Hierarchy,ar1
## 1700 Unutilized Abstraction,ar1
## 1701 Unutilized Abstraction,ar1
## 1702 Unnecessary Abstraction,ar1,gf1
## 1703 Unnecessary Abstraction,ar1,gf1
## 1704 Unutilized Abstraction,ar1,gf1
## 1705 Unutilized Abstraction,ar1,gf1
## 1706 Multifaceted Abstraction,ar1,gf1
## 1707 Multifaceted Abstraction,ar1,gf1
## 1708 Unutilized Abstraction,ar1,gf1
## 1709 Unutilized Abstraction,ar1,gf1
## 1710 Unutilized Abstraction,ar1
## 1711 Unutilized Abstraction,ar1
## 1712 Broken Hierarchy,ar1
## 1713 Broken Hierarchy,ar1
## 1714 Unutilized Abstraction,et1,it1
## 1715 Unutilized Abstraction,et1,it1
## 1716 Unutilized Abstraction,ar1
## 1717 Unutilized Abstraction,ar1
## 1718 Unutilized Abstraction,ar1
## 1719 Unutilized Abstraction,ar1
## 1720 Deficient Encapsulation,ar1
## 1721 Deficient Encapsulation,ar1
## 1722 Unutilized Abstraction,ar1
## 1723 Unutilized Abstraction,ar1
## 1724 Deficient Encapsulation,ar1
## 1725 Deficient Encapsulation,ar1
## 1726 Deficient Encapsulation,ar1
## 1727 Deficient Encapsulation,ar1
## 1728 Unutilized Abstraction,ar1
## 1729 Unutilized Abstraction,ar1
## 1730 Deficient Encapsulation,ar1
## 1731 Deficient Encapsulation,ar1
## 1732 Unnecessary Abstraction,ar1
## 1733 Unnecessary Abstraction,ar1
## 1734 Unutilized Abstraction,ar1
## 1735 Unutilized Abstraction,ar1
## 1736 Deficient Encapsulation,ar1
## 1737 Deficient Encapsulation,ar1
## 1738 Unnecessary Abstraction,ar1
## 1739 Unnecessary Abstraction,ar1
## 1740 Deficient Encapsulation,ar1
## 1741 Deficient Encapsulation,ar1
## 1742 Unnecessary Abstraction,ar1
## 1743 Unnecessary Abstraction,ar1
## 1744 Deficient Encapsulation,ar1
## 1745 Deficient Encapsulation,ar1
## 1746 Unnecessary Abstraction,ar1
## 1747 Unnecessary Abstraction,ar1
## 1748 Unnecessary Abstraction,ar1
## 1749 Unnecessary Abstraction,ar1
## 1750 Unutilized Abstraction,ar1
## 1751 Unutilized Abstraction,ar1
## 1752 Deficient Encapsulation,ar1
## 1753 Deficient Encapsulation,ar1
## 1754 Broken Modularization,ar1
## 1755 Broken Modularization,ar1
## 1756 Unutilized Abstraction,ar1,et1,gf1
## 1757 Unutilized Abstraction,ar1,et1,gf1
## 1758 Unnecessary Abstraction,ar1
## 1759 Unnecessary Abstraction,ar1
## 1760 Unutilized Abstraction,ar1
## 1761 Unutilized Abstraction,ar1
## 1762 Deficient Encapsulation,ar1
## 1763 Deficient Encapsulation,ar1
## 1764 Broken Modularization,ar1
## 1765 Broken Modularization,ar1
## 1766 Deficient Encapsulation,ar1
## 1767 Deficient Encapsulation,ar1
## 1768 Deficient Encapsulation,ar1
## 1769 Deficient Encapsulation,ar1
## 1770 Broken Modularization
## 1771 Broken Modularization
## 1772 Unutilized Abstraction,ar1
## 1773 Unutilized Abstraction,ar1
## 1774 Unnecessary Abstraction,ar1
## 1775 Unnecessary Abstraction,ar1
## 1776 Unutilized Abstraction,ar1
## 1777 Unutilized Abstraction,ar1
## 1778 Broken Modularization,ar1
## 1779 Broken Modularization,ar1
## 1780 Multifaceted Abstraction,ar1
## 1781 Multifaceted Abstraction,ar1
## 1782 Unutilized Abstraction,ar1
## 1783 Unutilized Abstraction,ar1
## 1784 Unnecessary Abstraction,ar1
## 1785 Unnecessary Abstraction,ar1
## 1786 Unutilized Abstraction,ar1
## 1787 Unutilized Abstraction,ar1
## 1788 Unutilized Abstraction,ar1,gf1
## 1789 Unutilized Abstraction,ar1,gf1
## 1790 Broken Modularization,ar1,gf1
## 1791 Broken Modularization,ar1,gf1
## 1792 Unutilized Abstraction,ar1
## 1793 Unutilized Abstraction,ar1
## 1794 Deficient Encapsulation,ar1
## 1795 Deficient Encapsulation,ar1
## 1796 Deficient Encapsulation,ar1
## 1797 Deficient Encapsulation,ar1
## 1798 Unutilized Abstraction,ar1
## 1799 Unutilized Abstraction,ar1
## 1800 Broken Modularization,ar1
## 1801 Broken Modularization,ar1
## 1802 Insufficient Modularization,ar1,et1,it1
## 1803 Insufficient Modularization,ar1,et1,it1
## 1804 Unutilized Abstraction,ar1
## 1805 Unutilized Abstraction,ar1
## 1806 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1807 Multifaceted Abstraction,ar1,et1,it1,gf1
## 1808 Deficient Encapsulation,ar1,et1,it1,gf1
## 1809 Deficient Encapsulation,ar1,et1,it1,gf1
## 1810 Insufficient Modularization,ar1,et1,it1,gf1
## 1811 Insufficient Modularization,ar1,et1,it1,gf1
## 1812 Insufficient Modularization,ar1,et1,it1,gf1
## 1813 Insufficient Modularization,ar1,et1,it1,gf1
## 1814 Insufficient Modularization,ar1,et1,it1,gf1
## 1815 Insufficient Modularization,ar1,et1,it1,gf1
## 1816 Insufficient Modularization,ar1,et1,it1,gf1
## 1817 Insufficient Modularization,ar1,et1,it1,gf1
## 1818 Insufficient Modularization,ar1,et1,it1,gf1
## 1819 Insufficient Modularization,ar1,et1,it1,gf1
## 1820 Insufficient Modularization,ar1,et1,it1,gf1
## 1821 Insufficient Modularization,ar1,et1,it1,gf1
## 1822 Feature Envy,ar1,et1,mg1,ro1
## 1823 Feature Envy,ar1,et1,mg1,ro1
## 1824 Feature Envy,ar1,et1,mg1,ro1
## 1825 Feature Envy,ar1,et1,mg1,ro1
## 1826 Feature Envy,ar1,et1,mg1,ro1
## 1827 Feature Envy,ar1,et1,mg1,ro1
## 1828 Feature Envy,ar1,et1,mg1,ro1
## 1829 Feature Envy,ar1,et1,mg1,ro1
## 1830 Feature Envy,ar1,et1,mg1,ro1
## 1831 Feature Envy,ar1,et1,mg1,ro1
## 1832 Feature Envy,ar1,et1,mg1,ro1
## 1833 Feature Envy,ar1,et1,mg1,ro1
## 1834 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1835 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1836 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1837 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1838 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1839 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1840 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1841 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1842 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1843 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1844 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1845 Deficient Encapsulation,ar1,et1,mg1,ro1
## 1846 Cyclically-dependent Modularization,et1
## 1847 Cyclically-dependent Modularization,et1
## 1848 Cyclically-dependent Modularization,et1
## 1849 Cyclically-dependent Modularization,et1
## 1850 Cyclically-dependent Modularization,et1
## 1851 Cyclically-dependent Modularization,et1
## 1852 Cyclically-dependent Modularization,et1
## 1853 Cyclically-dependent Modularization,et1
## 1854 Cyclically-dependent Modularization,et1
## 1855 Cyclically-dependent Modularization,et1
## 1856 Cyclically-dependent Modularization,et1
## 1857 Cyclically-dependent Modularization,et1
## 1858 Cyclically-dependent Modularization,et1
## 1859 Cyclically-dependent Modularization,et1
## 1860 Cyclically-dependent Modularization,ar1,et1
## 1861 Cyclically-dependent Modularization,ar1,et1
## 1862 Cyclically-dependent Modularization,ar1,et1
## 1863 Cyclically-dependent Modularization,ar1,et1
## 1864 Cyclically-dependent Modularization,ar1,et1
## 1865 Cyclically-dependent Modularization,ar1,et1
## 1866 Cyclically-dependent Modularization,ar1,et1
## 1867 Cyclically-dependent Modularization,ar1,et1
## 1868 Cyclically-dependent Modularization,ar1,et1
## 1869 Cyclically-dependent Modularization,ar1,et1
## 1870 Cyclically-dependent Modularization,ar1,et1
## 1871 Cyclically-dependent Modularization,ar1,et1
## 1872 Cyclically-dependent Modularization,ar1,et1
## 1873 Cyclically-dependent Modularization,ar1,et1
## 1874 Unnecessary Abstraction,ar1
## 1875 Unnecessary Abstraction,ar1
## 1876 Unnecessary Abstraction,ar1
## 1877 Unnecessary Abstraction,ar1
## 1878 Unnecessary Abstraction,ar1
## 1879 Unnecessary Abstraction,ar1
## 1880 Unnecessary Abstraction,ar1
## 1881 Unnecessary Abstraction,ar1
## 1882 Unnecessary Abstraction,ar1
## 1883 Unnecessary Abstraction,ar1
## 1884 Unnecessary Abstraction,ar1
## 1885 Unnecessary Abstraction,ar1
## 1886 Unutilized Abstraction,ar1
## 1887 Unutilized Abstraction,ar1
## 1888 Unutilized Abstraction,ar1
## 1889 Unutilized Abstraction,ar1
## 1890 Unutilized Abstraction,ar1
## 1891 Unutilized Abstraction,ar1
## 1892 Unutilized Abstraction,ar1
## 1893 Unutilized Abstraction,ar1
## 1894 Unutilized Abstraction,ar1
## 1895 Unutilized Abstraction,ar1
## 1896 Unutilized Abstraction,ar1
## 1897 Unutilized Abstraction,ar1
## 1898 Broken Hierarchy,ar1
## 1899 Broken Hierarchy,ar1
## 1900 Broken Hierarchy,ar1
## 1901 Broken Hierarchy,ar1
## 1902 Broken Hierarchy,ar1
## 1903 Broken Hierarchy,ar1
## 1904 Broken Hierarchy,ar1
## 1905 Broken Hierarchy,ar1
## 1906 Broken Hierarchy,ar1
## 1907 Broken Hierarchy,ar1
## 1908 Broken Hierarchy,ar1
## 1909 Broken Hierarchy,ar1
## 1910 Unutilized Abstraction,ar1
## 1911 Unutilized Abstraction,ar1
## 1912 Unutilized Abstraction,ar1
## 1913 Unutilized Abstraction,ar1
## 1914 Unutilized Abstraction,ar1
## 1915 Unutilized Abstraction,ar1
## 1916 Unutilized Abstraction,ar1
## 1917 Unutilized Abstraction,ar1
## 1918 Unutilized Abstraction,ar1
## 1919 Unutilized Abstraction,ar1
## 1920 Unutilized Abstraction,ar1
## 1921 Unutilized Abstraction,ar1
## 1922 Broken Hierarchy,ar1
## 1923 Broken Hierarchy,ar1
## 1924 Broken Hierarchy,ar1
## 1925 Broken Hierarchy,ar1
## 1926 Broken Hierarchy,ar1
## 1927 Broken Hierarchy,ar1
## 1928 Broken Hierarchy,ar1
## 1929 Broken Hierarchy,ar1
## 1930 Broken Hierarchy,ar1
## 1931 Broken Hierarchy,ar1
## 1932 Broken Hierarchy,ar1
## 1933 Broken Hierarchy,ar1
## 1934 Unnecessary Abstraction,ar1
## 1935 Unnecessary Abstraction,ar1
## 1936 Unnecessary Abstraction,ar1
## 1937 Unnecessary Abstraction,ar1
## 1938 Unnecessary Abstraction,ar1
## 1939 Unnecessary Abstraction,ar1
## 1940 Unnecessary Abstraction,ar1
## 1941 Unnecessary Abstraction,ar1
## 1942 Unnecessary Abstraction,ar1
## 1943 Unnecessary Abstraction,ar1
## 1944 Unnecessary Abstraction,ar1
## 1945 Unnecessary Abstraction,ar1
## 1946 Unutilized Abstraction,ar1
## 1947 Unutilized Abstraction,ar1
## 1948 Unutilized Abstraction,ar1
## 1949 Unutilized Abstraction,ar1
## 1950 Unutilized Abstraction,ar1
## 1951 Unutilized Abstraction,ar1
## 1952 Unutilized Abstraction,ar1
## 1953 Unutilized Abstraction,ar1
## 1954 Unutilized Abstraction,ar1
## 1955 Unutilized Abstraction,ar1
## 1956 Unutilized Abstraction,ar1
## 1957 Unutilized Abstraction,ar1
## 1958 Unutilized Abstraction,ar1
## 1959 Unutilized Abstraction,ar1
## 1960 Unutilized Abstraction,ar1
## 1961 Unutilized Abstraction,ar1
## 1962 Unutilized Abstraction,ar1
## 1963 Unutilized Abstraction,ar1
## 1964 Unutilized Abstraction,ar1
## 1965 Unutilized Abstraction,ar1
## 1966 Unutilized Abstraction,ar1
## 1967 Unutilized Abstraction,ar1
## 1968 Unutilized Abstraction,ar1
## 1969 Unutilized Abstraction,ar1
## 1970 Broken Hierarchy,ar1
## 1971 Broken Hierarchy,ar1
## 1972 Broken Hierarchy,ar1
## 1973 Broken Hierarchy,ar1
## 1974 Broken Hierarchy,ar1
## 1975 Broken Hierarchy,ar1
## 1976 Broken Hierarchy,ar1
## 1977 Broken Hierarchy,ar1
## 1978 Broken Hierarchy,ar1
## 1979 Broken Hierarchy,ar1
## 1980 Broken Hierarchy,ar1
## 1981 Broken Hierarchy,ar1
## 1982 Unnecessary Abstraction,ar1
## 1983 Unnecessary Abstraction,ar1
## 1984 Unnecessary Abstraction,ar1,se1
## 1985 Unnecessary Abstraction,ar1,se1
## 1986 Unnecessary Abstraction,ar1,se1
## 1987 Unnecessary Abstraction,ar1,se1
## 1988 Unnecessary Abstraction,ar1,se1
## 1989 Unnecessary Abstraction,ar1,se1
## 1990 Unnecessary Abstraction,ar1,se1
## 1991 Unnecessary Abstraction,ar1,se1
## 1992 Unnecessary Abstraction,ar1,se1
## 1993 Unnecessary Abstraction,ar1,se1
## 1994 Unutilized Abstraction,ar1
## 1995 Unutilized Abstraction,ar1
## 1996 Unutilized Abstraction,ar1,se1
## 1997 Unutilized Abstraction,ar1,se1
## 1998 Unutilized Abstraction,ar1,se1
## 1999 Unutilized Abstraction,ar1,se1
## 2000 Unutilized Abstraction,ar1,se1
## 2001 Unutilized Abstraction,ar1,se1
## 2002 Unutilized Abstraction,ar1,se1
## 2003 Unutilized Abstraction,ar1,se1
## 2004 Unutilized Abstraction,ar1,se1
## 2005 Unutilized Abstraction,ar1,se1
## 2006 Unutilized Abstraction,ar1,et1,gf1
## 2007 Unutilized Abstraction,ar1,et1,gf1
## 2008 Unutilized Abstraction,ar1,et1,gf1
## 2009 Unutilized Abstraction,ar1,et1,gf1
## 2010 Unutilized Abstraction,ar1,et1,gf1
## 2011 Unutilized Abstraction,ar1,et1,gf1
## 2012 Unutilized Abstraction,ar1,et1,gf1
## 2013 Unutilized Abstraction,ar1,et1,gf1
## 2014 Unutilized Abstraction,ar1,et1,gf1
## 2015 Unutilized Abstraction,ar1,et1,gf1
## 2016 Unutilized Abstraction,ar1,et1,gf1
## 2017 Unutilized Abstraction,ar1,et1,gf1
## 2018 Unutilized Abstraction,ar1
## 2019 Unutilized Abstraction,ar1
## 2020 Unutilized Abstraction,ar1
## 2021 Unutilized Abstraction,ar1
## 2022 Unutilized Abstraction,ar1
## 2023 Unutilized Abstraction,ar1
## 2024 Unutilized Abstraction,ar1
## 2025 Unutilized Abstraction,ar1
## 2026 Unutilized Abstraction,ar1
## 2027 Unutilized Abstraction,ar1
## 2028 Unutilized Abstraction,ar1
## 2029 Unutilized Abstraction,ar1
## 2030 Broken Hierarchy,ar1
## 2031 Broken Hierarchy,ar1
## 2032 Broken Hierarchy,ar1
## 2033 Broken Hierarchy,ar1
## 2034 Broken Hierarchy,ar1
## 2035 Broken Hierarchy,ar1
## 2036 Broken Hierarchy,ar1
## 2037 Broken Hierarchy,ar1
## 2038 Broken Hierarchy,ar1
## 2039 Broken Hierarchy,ar1
## 2040 Broken Hierarchy,ar1
## 2041 Broken Hierarchy,ar1
## 2042 Unutilized Abstraction,ar1,gf1
## 2043 Unutilized Abstraction,ar1,gf1
## 2044 Unutilized Abstraction,ar1,gf1
## 2045 Unutilized Abstraction,ar1,gf1
## 2046 Unutilized Abstraction,ar1,gf1
## 2047 Unutilized Abstraction,ar1,gf1
## 2048 Unutilized Abstraction,ar1,gf1
## 2049 Unutilized Abstraction,ar1,gf1
## 2050 Unutilized Abstraction,ar1,gf1
## 2051 Unutilized Abstraction,ar1,gf1
## 2052 Unutilized Abstraction,ar1,gf1
## 2053 Unutilized Abstraction,ar1,gf1
## 2054 Deficient Encapsulation,ar1,gf1
## 2055 Deficient Encapsulation,ar1,gf1
## 2056 Deficient Encapsulation,ar1,gf1
## 2057 Deficient Encapsulation,ar1,gf1
## 2058 Deficient Encapsulation,ar1,gf1
## 2059 Deficient Encapsulation,ar1,gf1
## 2060 Deficient Encapsulation,ar1,gf1
## 2061 Deficient Encapsulation,ar1,gf1
## 2062 Deficient Encapsulation,ar1,gf1
## 2063 Deficient Encapsulation,ar1,gf1
## 2064 Deficient Encapsulation,ar1,gf1
## 2065 Deficient Encapsulation,ar1,gf1
## 2066 Unutilized Abstraction,ar1
## 2067 Unutilized Abstraction,ar1
## 2068 Unutilized Abstraction,ar1
## 2069 Unutilized Abstraction,ar1
## 2070 Unutilized Abstraction,ar1
## 2071 Unutilized Abstraction,ar1
## 2072 Unutilized Abstraction,ar1
## 2073 Unutilized Abstraction,ar1
## 2074 Unutilized Abstraction,ar1
## 2075 Unutilized Abstraction,ar1
## 2076 Unutilized Abstraction,ar1
## 2077 Unutilized Abstraction,ar1
## 2078 Unutilized Abstraction,ar1,it1,gf1
## 2079 Unutilized Abstraction,ar1,it1,gf1
## 2080 Unutilized Abstraction,ar1,it1,gf1
## 2081 Unutilized Abstraction,ar1,it1,gf1
## 2082 Unutilized Abstraction,ar1,it1,gf1
## 2083 Unutilized Abstraction,ar1,it1,gf1
## 2084 Unutilized Abstraction,ar1,it1,gf1
## 2085 Unutilized Abstraction,ar1,it1,gf1
## 2086 Unutilized Abstraction,ar1,it1,gf1
## 2087 Unutilized Abstraction,ar1,it1,gf1
## 2088 Unutilized Abstraction,ar1,it1,gf1
## 2089 Unutilized Abstraction,ar1,it1,gf1
## 2090 Multifaceted Abstraction,ar1,gf1
## 2091 Multifaceted Abstraction,ar1,gf1
## 2092 Multifaceted Abstraction,ar1,gf1
## 2093 Multifaceted Abstraction,ar1,gf1
## 2094 Multifaceted Abstraction,ar1,gf1
## 2095 Multifaceted Abstraction,ar1,gf1
## 2096 Multifaceted Abstraction,ar1,gf1
## 2097 Multifaceted Abstraction,ar1,gf1
## 2098 Multifaceted Abstraction,ar1,gf1
## 2099 Multifaceted Abstraction,ar1,gf1
## 2100 Multifaceted Abstraction,ar1,gf1
## 2101 Multifaceted Abstraction,ar1,gf1
## 2102 Unutilized Abstraction,ar1,gf1
## 2103 Unutilized Abstraction,ar1,gf1
## 2104 Unutilized Abstraction,ar1,gf1
## 2105 Unutilized Abstraction,ar1,gf1
## 2106 Unutilized Abstraction,ar1,gf1
## 2107 Unutilized Abstraction,ar1,gf1
## 2108 Unutilized Abstraction,ar1,gf1
## 2109 Unutilized Abstraction,ar1,gf1
## 2110 Unutilized Abstraction,ar1,gf1
## 2111 Unutilized Abstraction,ar1,gf1
## 2112 Unutilized Abstraction,ar1,gf1
## 2113 Unutilized Abstraction,ar1,gf1
## 2114 Deficient Encapsulation,ar1,et1,gf1
## 2115 Deficient Encapsulation,ar1,et1,gf1
## 2116 Deficient Encapsulation,ar1,et1,gf1
## 2117 Deficient Encapsulation,ar1,et1,gf1
## 2118 Deficient Encapsulation,ar1,et1,gf1
## 2119 Deficient Encapsulation,ar1,et1,gf1
## 2120 Deficient Encapsulation,ar1,et1,gf1
## 2121 Deficient Encapsulation,ar1,et1,gf1
## 2122 Deficient Encapsulation,ar1,et1,gf1
## 2123 Deficient Encapsulation,ar1,et1,gf1
## 2124 Deficient Encapsulation,ar1,et1,gf1
## 2125 Deficient Encapsulation,ar1,et1,gf1
## 2126 Unutilized Abstraction,ar1
## 2127 Unutilized Abstraction,ar1
## 2128 Unutilized Abstraction,ar1
## 2129 Unutilized Abstraction,ar1
## 2130 Unutilized Abstraction,ar1
## 2131 Unutilized Abstraction,ar1
## 2132 Unutilized Abstraction,ar1
## 2133 Unutilized Abstraction,ar1
## 2134 Unutilized Abstraction,ar1
## 2135 Unutilized Abstraction,ar1
## 2136 Unutilized Abstraction,ar1
## 2137 Unutilized Abstraction,ar1
## 2138 Broken Hierarchy,ar1
## 2139 Broken Hierarchy,ar1
## 2140 Broken Hierarchy,ar1
## 2141 Broken Hierarchy,ar1
## 2142 Broken Hierarchy,ar1
## 2143 Broken Hierarchy,ar1
## 2144 Broken Hierarchy,ar1
## 2145 Broken Hierarchy,ar1
## 2146 Broken Hierarchy,ar1
## 2147 Broken Hierarchy,ar1
## 2148 Broken Hierarchy,ar1
## 2149 Broken Hierarchy,ar1
## 2150 Unutilized Abstraction,et1,it1
## 2151 Unutilized Abstraction,et1,it1
## 2152 Unutilized Abstraction,et1,it1
## 2153 Unutilized Abstraction,et1,it1
## 2154 Unutilized Abstraction,et1,it1
## 2155 Unutilized Abstraction,et1,it1
## 2156 Unutilized Abstraction,et1,it1
## 2157 Unutilized Abstraction,et1,it1
## 2158 Unutilized Abstraction,et1,it1
## 2159 Unutilized Abstraction,et1,it1
## 2160 Unutilized Abstraction,et1,it1
## 2161 Unutilized Abstraction,et1,it1
## 2162 Unutilized Abstraction,ar1
## 2163 Unutilized Abstraction,ar1
## 2164 Unutilized Abstraction,ar1
## 2165 Unutilized Abstraction,ar1,gf1
## 2166 Unutilized Abstraction,ar1,gf1
## 2167 Unutilized Abstraction,ar1,gf1
## 2168 Unutilized Abstraction,ar1,gf1
## 2169 Unutilized Abstraction,ar1,gf1
## 2170 Unutilized Abstraction,ar1,gf1
## 2171 Unutilized Abstraction,ar1,gf1
## 2172 Unutilized Abstraction,ar1,gf1
## 2173 Unutilized Abstraction,ar1,gf1
## 2174 Unutilized Abstraction,ar1
## 2175 Unutilized Abstraction,ar1
## 2176 Unutilized Abstraction,ar1
## 2177 Unutilized Abstraction,ar1
## 2178 Unutilized Abstraction,ar1
## 2179 Unutilized Abstraction,ar1
## 2180 Unutilized Abstraction,ar1,gf1
## 2181 Unutilized Abstraction,ar1,gf1
## 2182 Unutilized Abstraction,ar1,gf1
## 2183 Unutilized Abstraction,ar1,gf1
## 2184 Unutilized Abstraction,ar1,gf1
## 2185 Unutilized Abstraction,ar1,gf1
## 2186 Deficient Encapsulation,ar1
## 2187 Deficient Encapsulation,ar1
## 2188 Deficient Encapsulation,ar1
## 2189 Deficient Encapsulation,ar1
## 2190 Deficient Encapsulation,ar1
## 2191 Deficient Encapsulation,ar1
## 2192 Deficient Encapsulation,ar1,gf1
## 2193 Deficient Encapsulation,ar1,gf1
## 2194 Deficient Encapsulation,ar1,gf1
## 2195 Deficient Encapsulation,ar1,gf1
## 2196 Deficient Encapsulation,ar1,gf1
## 2197 Deficient Encapsulation,ar1,gf1
## 2198 Unutilized Abstraction,ar1
## 2199 Unutilized Abstraction,ar1
## 2200 Unutilized Abstraction,ar1
## 2201 Unutilized Abstraction,ar1
## 2202 Unutilized Abstraction,ar1
## 2203 Unutilized Abstraction,ar1
## 2204 Unutilized Abstraction,ar1
## 2205 Unutilized Abstraction,ar1
## 2206 Unutilized Abstraction,ar1
## 2207 Unutilized Abstraction,ar1
## 2208 Unutilized Abstraction,ar1
## 2209 Unutilized Abstraction,ar1
## 2210 Deficient Encapsulation,ar1
## 2211 Deficient Encapsulation,ar1
## 2212 Deficient Encapsulation,ar1
## 2213 Deficient Encapsulation,ar1
## 2214 Deficient Encapsulation,ar1
## 2215 Deficient Encapsulation,ar1
## 2216 Deficient Encapsulation,ar1
## 2217 Deficient Encapsulation,ar1
## 2218 Deficient Encapsulation,ar1
## 2219 Deficient Encapsulation,ar1
## 2220 Deficient Encapsulation,ar1
## 2221 Deficient Encapsulation,ar1
## 2222 Deficient Encapsulation,ar1
## 2223 Deficient Encapsulation,ar1
## 2224 Deficient Encapsulation,ar1
## 2225 Deficient Encapsulation,ar1
## 2226 Deficient Encapsulation,ar1
## 2227 Deficient Encapsulation,ar1
## 2228 Deficient Encapsulation,ar1
## 2229 Deficient Encapsulation,ar1
## 2230 Deficient Encapsulation,ar1
## 2231 Deficient Encapsulation,ar1
## 2232 Deficient Encapsulation,ar1
## 2233 Deficient Encapsulation,ar1
## 2234 Unutilized Abstraction,ar1
## 2235 Unutilized Abstraction,ar1
## 2236 Unutilized Abstraction,ar1
## 2237 Unutilized Abstraction,ar1
## 2238 Unutilized Abstraction,ar1
## 2239 Unutilized Abstraction,ar1
## 2240 Unutilized Abstraction,ar1
## 2241 Unutilized Abstraction,ar1
## 2242 Unutilized Abstraction,ar1
## 2243 Unutilized Abstraction,ar1
## 2244 Unutilized Abstraction,ar1
## 2245 Unutilized Abstraction,ar1
## 2246 Deficient Encapsulation,ar1
## 2247 Deficient Encapsulation,ar1
## 2248 Deficient Encapsulation,ar1
## 2249 Deficient Encapsulation,ar1
## 2250 Deficient Encapsulation,ar1
## 2251 Deficient Encapsulation,ar1
## 2252 Deficient Encapsulation,ar1
## 2253 Deficient Encapsulation,ar1
## 2254 Deficient Encapsulation,ar1
## 2255 Deficient Encapsulation,ar1
## 2256 Deficient Encapsulation,ar1
## 2257 Deficient Encapsulation,ar1
## 2258 Multifaceted Abstraction,ar1
## 2259 Multifaceted Abstraction,ar1
## 2260 Multifaceted Abstraction,ar1
## 2261 Multifaceted Abstraction,ar1
## 2262 Multifaceted Abstraction,ar1
## 2263 Multifaceted Abstraction,ar1
## 2264 Multifaceted Abstraction,ar1
## 2265 Multifaceted Abstraction,ar1
## 2266 Multifaceted Abstraction,ar1
## 2267 Multifaceted Abstraction,ar1
## 2268 Multifaceted Abstraction,ar1
## 2269 Multifaceted Abstraction,ar1
## 2270 Unutilized Abstraction,ar1
## 2271 Unutilized Abstraction,ar1
## 2272 Unutilized Abstraction,ar1
## 2273 Unutilized Abstraction,ar1
## 2274 Unutilized Abstraction,ar1
## 2275 Unutilized Abstraction,ar1
## 2276 Unutilized Abstraction,ar1
## 2277 Unutilized Abstraction,ar1
## 2278 Unutilized Abstraction,ar1
## 2279 Unutilized Abstraction,ar1
## 2280 Unutilized Abstraction,ar1
## 2281 Unutilized Abstraction,ar1
## 2282 Deficient Encapsulation,ar1
## 2283 Deficient Encapsulation,ar1
## 2284 Deficient Encapsulation,ar1
## 2285 Deficient Encapsulation,ar1
## 2286 Deficient Encapsulation,ar1
## 2287 Deficient Encapsulation,ar1
## 2288 Deficient Encapsulation,ar1
## 2289 Deficient Encapsulation,ar1
## 2290 Deficient Encapsulation,ar1
## 2291 Deficient Encapsulation,ar1
## 2292 Deficient Encapsulation,ar1
## 2293 Deficient Encapsulation,ar1
## 2294 Deficient Encapsulation,ar1
## 2295 Deficient Encapsulation,ar1
## 2296 Deficient Encapsulation,ar1
## 2297 Deficient Encapsulation,ar1
## 2298 Deficient Encapsulation,ar1
## 2299 Deficient Encapsulation,ar1
## 2300 Deficient Encapsulation,ar1
## 2301 Deficient Encapsulation,ar1
## 2302 Deficient Encapsulation,ar1
## 2303 Deficient Encapsulation,ar1
## 2304 Deficient Encapsulation,ar1
## 2305 Deficient Encapsulation,ar1
## 2306 Unnecessary Abstraction,ar1
## 2307 Unnecessary Abstraction,ar1
## 2308 Unnecessary Abstraction,ar1
## 2309 Unnecessary Abstraction,ar1
## 2310 Unnecessary Abstraction,ar1
## 2311 Unnecessary Abstraction,ar1
## 2312 Unnecessary Abstraction,ar1
## 2313 Unnecessary Abstraction,ar1
## 2314 Unnecessary Abstraction,ar1
## 2315 Unnecessary Abstraction,ar1
## 2316 Unnecessary Abstraction,ar1
## 2317 Unnecessary Abstraction,ar1
## 2318 Deficient Encapsulation,ar1
## 2319 Deficient Encapsulation,ar1
## 2320 Deficient Encapsulation,ar1
## 2321 Deficient Encapsulation,ar1
## 2322 Deficient Encapsulation,ar1
## 2323 Deficient Encapsulation,ar1
## 2324 Deficient Encapsulation,ar1
## 2325 Deficient Encapsulation,ar1
## 2326 Deficient Encapsulation,ar1
## 2327 Deficient Encapsulation,ar1
## 2328 Deficient Encapsulation,ar1
## 2329 Deficient Encapsulation,ar1
## 2330 Unnecessary Abstraction,ar1
## 2331 Unnecessary Abstraction,ar1
## 2332 Unnecessary Abstraction,ar1
## 2333 Unnecessary Abstraction,ar1
## 2334 Unnecessary Abstraction,ar1
## 2335 Unnecessary Abstraction,ar1
## 2336 Unnecessary Abstraction,ar1
## 2337 Unnecessary Abstraction,ar1
## 2338 Unnecessary Abstraction,ar1
## 2339 Unnecessary Abstraction,ar1
## 2340 Unnecessary Abstraction,ar1
## 2341 Unnecessary Abstraction,ar1
## 2342 Unutilized Abstraction,ar1,it1
## 2343 Unutilized Abstraction,ar1,it1
## 2344 Unutilized Abstraction,ar1,it1
## 2345 Unutilized Abstraction,ar1,it1
## 2346 Unutilized Abstraction,ar1,it1
## 2347 Unutilized Abstraction,ar1,it1
## 2348 Unutilized Abstraction,ar1,it1
## 2349 Unutilized Abstraction,ar1,it1
## 2350 Unutilized Abstraction,ar1,it1
## 2351 Unutilized Abstraction,ar1,it1
## 2352 Unutilized Abstraction,ar1,it1
## 2353 Unutilized Abstraction,ar1,it1
## 2354 Deficient Encapsulation,ar1,it1
## 2355 Deficient Encapsulation,ar1,it1
## 2356 Deficient Encapsulation,ar1,it1
## 2357 Deficient Encapsulation,ar1,it1
## 2358 Deficient Encapsulation,ar1,it1
## 2359 Deficient Encapsulation,ar1,it1
## 2360 Deficient Encapsulation,ar1,it1
## 2361 Deficient Encapsulation,ar1,it1
## 2362 Deficient Encapsulation,ar1,it1
## 2363 Deficient Encapsulation,ar1,it1
## 2364 Deficient Encapsulation,ar1,it1
## 2365 Deficient Encapsulation,ar1,it1
## 2366 Unutilized Abstraction,ar1,et1,gf1
## 2367 Unutilized Abstraction,ar1,et1,gf1
## 2368 Unutilized Abstraction,ar1,et1,gf1
## 2369 Unutilized Abstraction,ar1,et1,gf1
## 2370 Unutilized Abstraction,ar1,et1,gf1
## 2371 Unutilized Abstraction,ar1,et1,gf1
## 2372 Unutilized Abstraction,ar1,et1,gf1
## 2373 Unutilized Abstraction,ar1,et1,gf1
## 2374 Unutilized Abstraction,ar1,et1,gf1
## 2375 Unutilized Abstraction,ar1,et1,gf1
## 2376 Unutilized Abstraction,ar1,et1,gf1
## 2377 Unutilized Abstraction,ar1,et1,gf1
## 2378 Unnecessary Abstraction,ar1
## 2379 Unnecessary Abstraction,ar1
## 2380 Unnecessary Abstraction,ar1
## 2381 Unnecessary Abstraction,ar1
## 2382 Unnecessary Abstraction,ar1
## 2383 Unnecessary Abstraction,ar1
## 2384 Unnecessary Abstraction,ar1
## 2385 Unnecessary Abstraction,ar1
## 2386 Unnecessary Abstraction,ar1
## 2387 Unnecessary Abstraction,ar1
## 2388 Unnecessary Abstraction,ar1
## 2389 Unnecessary Abstraction,ar1
## 2390 Unutilized Abstraction,ar1
## 2391 Unutilized Abstraction,ar1
## 2392 Unutilized Abstraction,ar1
## 2393 Unutilized Abstraction,ar1
## 2394 Unutilized Abstraction,ar1
## 2395 Unutilized Abstraction,ar1
## 2396 Unutilized Abstraction,ar1
## 2397 Unutilized Abstraction,ar1
## 2398 Unutilized Abstraction,ar1
## 2399 Unutilized Abstraction,ar1
## 2400 Unutilized Abstraction,ar1
## 2401 Unutilized Abstraction,ar1
## 2402 Deficient Encapsulation,ar1
## 2403 Deficient Encapsulation,ar1
## 2404 Deficient Encapsulation,ar1
## 2405 Deficient Encapsulation,ar1
## 2406 Deficient Encapsulation,ar1
## 2407 Deficient Encapsulation,ar1
## 2408 Deficient Encapsulation,ar1
## 2409 Deficient Encapsulation,ar1
## 2410 Deficient Encapsulation,ar1
## 2411 Deficient Encapsulation,ar1
## 2412 Deficient Encapsulation,ar1
## 2413 Deficient Encapsulation,ar1
## 2414 Broken Modularization,ar1
## 2415 Broken Modularization,ar1
## 2416 Broken Modularization,ar1
## 2417 Broken Modularization,ar1
## 2418 Broken Modularization,ar1
## 2419 Broken Modularization,ar1
## 2420 Broken Modularization,ar1
## 2421 Broken Modularization,ar1
## 2422 Broken Modularization,ar1
## 2423 Broken Modularization,ar1
## 2424 Broken Modularization,ar1
## 2425 Broken Modularization,ar1
## 2426 Deficient Encapsulation,ar1
## 2427 Deficient Encapsulation,ar1
## 2428 Deficient Encapsulation,ar1
## 2429 Deficient Encapsulation,ar1
## 2430 Deficient Encapsulation,ar1
## 2431 Deficient Encapsulation,ar1
## 2432 Deficient Encapsulation,ar1
## 2433 Deficient Encapsulation,ar1
## 2434 Deficient Encapsulation,ar1
## 2435 Deficient Encapsulation,ar1
## 2436 Deficient Encapsulation,ar1
## 2437 Deficient Encapsulation,ar1
## 2438 Deficient Encapsulation,ar1
## 2439 Deficient Encapsulation,ar1
## 2440 Deficient Encapsulation,ar1
## 2441 Deficient Encapsulation,ar1
## 2442 Deficient Encapsulation,ar1
## 2443 Deficient Encapsulation,ar1
## 2444 Deficient Encapsulation,ar1
## 2445 Deficient Encapsulation,ar1
## 2446 Deficient Encapsulation,ar1
## 2447 Deficient Encapsulation,ar1
## 2448 Deficient Encapsulation,ar1
## 2449 Deficient Encapsulation,ar1
## 2450 Unutilized Abstraction,ar1
## 2451 Unutilized Abstraction,ar1
## 2452 Unutilized Abstraction,ar1
## 2453 Unutilized Abstraction,ar1
## 2454 Unutilized Abstraction,ar1
## 2455 Unutilized Abstraction,ar1
## 2456 Unutilized Abstraction,ar1
## 2457 Unutilized Abstraction,ar1
## 2458 Unutilized Abstraction,ar1
## 2459 Unutilized Abstraction,ar1
## 2460 Unutilized Abstraction,ar1
## 2461 Unutilized Abstraction,ar1
## 2462 Broken Modularization
## 2463 Broken Modularization
## 2464 Broken Modularization
## 2465 Broken Modularization
## 2466 Broken Modularization
## 2467 Broken Modularization
## 2468 Broken Modularization
## 2469 Broken Modularization
## 2470 Broken Modularization
## 2471 Broken Modularization
## 2472 Broken Modularization
## 2473 Broken Modularization
## 2474 Unutilized Abstraction,ar1,it1
## 2475 Unutilized Abstraction,ar1,it1
## 2476 Unutilized Abstraction,ar1,it1
## 2477 Unutilized Abstraction,ar1,it1,gf1
## 2478 Unutilized Abstraction,ar1,it1,gf1
## 2479 Unutilized Abstraction,ar1,it1,gf1
## 2480 Unutilized Abstraction,ar1,it1,gf1
## 2481 Unutilized Abstraction,ar1,it1,gf1
## 2482 Unutilized Abstraction,ar1,it1,gf1
## 2483 Unutilized Abstraction,ar1,it1,gf1
## 2484 Unutilized Abstraction,ar1,it1,gf1
## 2485 Unutilized Abstraction,ar1,it1,gf1
## 2486 Multifaceted Abstraction,ar1,et1,it1
## 2487 Multifaceted Abstraction,ar1,et1,it1
## 2488 Multifaceted Abstraction,ar1,et1,it1
## 2489 Multifaceted Abstraction,ar1,et1,it1
## 2490 Multifaceted Abstraction,ar1,et1,it1
## 2491 Multifaceted Abstraction,ar1,et1,it1
## 2492 Multifaceted Abstraction,ar1,et1,it1
## 2493 Multifaceted Abstraction,ar1,et1,it1
## 2494 Multifaceted Abstraction,ar1,et1,it1
## 2495 Multifaceted Abstraction,ar1,et1,it1
## 2496 Multifaceted Abstraction,ar1,et1,it1
## 2497 Multifaceted Abstraction,ar1,et1,it1
## 2498 Unutilized Abstraction,ar1
## 2499 Unutilized Abstraction,ar1
## 2500 Unutilized Abstraction,ar1
## 2501 Unutilized Abstraction,ar1
## 2502 Unutilized Abstraction,ar1
## 2503 Unutilized Abstraction,ar1
## 2504 Unutilized Abstraction,ar1
## 2505 Unutilized Abstraction,ar1
## 2506 Unutilized Abstraction,ar1
## 2507 Unutilized Abstraction,ar1
## 2508 Unutilized Abstraction,ar1
## 2509 Unutilized Abstraction,ar1
## 2510 Unutilized Abstraction,ar1
## 2511 Unutilized Abstraction,ar1
## 2512 Unutilized Abstraction,ar1
## 2513 Unutilized Abstraction,ar1
## 2514 Unutilized Abstraction,ar1
## 2515 Unutilized Abstraction,ar1
## 2516 Unutilized Abstraction,ar1
## 2517 Unutilized Abstraction,ar1
## 2518 Unutilized Abstraction,ar1
## 2519 Unutilized Abstraction,ar1
## 2520 Unutilized Abstraction,ar1
## 2521 Unutilized Abstraction,ar1
## 2522 Unutilized Abstraction,ar1
## 2523 Unutilized Abstraction,ar1
## 2524 Unutilized Abstraction,ar1
## 2525 Unutilized Abstraction,ar1
## 2526 Unutilized Abstraction,ar1
## 2527 Unutilized Abstraction,ar1
## 2528 Unutilized Abstraction,ar1
## 2529 Unutilized Abstraction,ar1
## 2530 Unutilized Abstraction,ar1
## 2531 Unutilized Abstraction,ar1
## 2532 Unutilized Abstraction,ar1
## 2533 Unutilized Abstraction,ar1
## 2534 Unutilized Abstraction,ar1
## 2535 Unutilized Abstraction,ar1
## 2536 Unutilized Abstraction,ar1
## 2537 Unutilized Abstraction,ar1
## 2538 Unutilized Abstraction,ar1
## 2539 Unutilized Abstraction,ar1
## 2540 Unutilized Abstraction,ar1
## 2541 Unutilized Abstraction,ar1
## 2542 Unnecessary Abstraction,ar1
## 2543 Unnecessary Abstraction,ar1
## 2544 Unnecessary Abstraction,ar1
## 2545 Unnecessary Abstraction,ar1
## 2546 Unnecessary Abstraction,ar1
## 2547 Unnecessary Abstraction,ar1
## 2548 Unnecessary Abstraction,ar1
## 2549 Unnecessary Abstraction,ar1
## 2550 Unnecessary Abstraction,ar1
## 2551 Unnecessary Abstraction,ar1
## 2552 Unnecessary Abstraction,ar1
## 2553 Unnecessary Abstraction,ar1
## 2554 Unutilized Abstraction,ar1
## 2555 Unutilized Abstraction,ar1
## 2556 Unutilized Abstraction,ar1
## 2557 Unutilized Abstraction,ar1
## 2558 Unutilized Abstraction,ar1
## 2559 Unutilized Abstraction,ar1
## 2560 Unutilized Abstraction,ar1
## 2561 Unutilized Abstraction,ar1
## 2562 Unutilized Abstraction,ar1
## 2563 Unutilized Abstraction,ar1
## 2564 Unutilized Abstraction,ar1
## 2565 Unutilized Abstraction,ar1
## 2566 Unnecessary Abstraction,ar1
## 2567 Unnecessary Abstraction,ar1
## 2568 Unnecessary Abstraction,ar1
## 2569 Unnecessary Abstraction,ar1
## 2570 Unnecessary Abstraction,ar1
## 2571 Unnecessary Abstraction,ar1
## 2572 Unnecessary Abstraction,ar1
## 2573 Unnecessary Abstraction,ar1
## 2574 Unnecessary Abstraction,ar1
## 2575 Unnecessary Abstraction,ar1
## 2576 Unutilized Abstraction,ar1
## 2577 Unutilized Abstraction,ar1
## 2578 Unutilized Abstraction,ar1
## 2579 Unutilized Abstraction,ar1
## 2580 Unutilized Abstraction,ar1
## 2581 Unutilized Abstraction,ar1
## 2582 Unutilized Abstraction,ar1
## 2583 Unutilized Abstraction,ar1
## 2584 Unutilized Abstraction,ar1
## 2585 Unutilized Abstraction,ar1
## 2586 Unutilized Abstraction,ar1,gf1
## 2587 Unutilized Abstraction,ar1,gf1
## 2588 Unutilized Abstraction,ar1,gf1
## 2589 Unutilized Abstraction,ar1,gf1
## 2590 Unutilized Abstraction,ar1,gf1
## 2591 Unutilized Abstraction,ar1,gf1
## 2592 Unutilized Abstraction,ar1,gf1
## 2593 Unutilized Abstraction,ar1,gf1
## 2594 Unutilized Abstraction,ar1,gf1
## 2595 Unutilized Abstraction,ar1,gf1
## 2596 Unutilized Abstraction,ar1,gf1
## 2597 Unutilized Abstraction,ar1,gf1
## 2598 Deficient Encapsulation,ar1
## 2599 Deficient Encapsulation,ar1
## 2600 Deficient Encapsulation,ar1
## 2601 Deficient Encapsulation,ar1
## 2602 Deficient Encapsulation,ar1
## 2603 Deficient Encapsulation,ar1
## 2604 Deficient Encapsulation,ar1
## 2605 Deficient Encapsulation,ar1
## 2606 Deficient Encapsulation,ar1
## 2607 Deficient Encapsulation,ar1
## 2608 Deficient Encapsulation,ar1
## 2609 Deficient Encapsulation,ar1
## 2610 Deficient Encapsulation,ar1
## 2611 Deficient Encapsulation,ar1
## 2612 Deficient Encapsulation,ar1
## 2613 Deficient Encapsulation,ar1
## 2614 Deficient Encapsulation,ar1
## 2615 Deficient Encapsulation,ar1
## 2616 Deficient Encapsulation,ar1
## 2617 Deficient Encapsulation,ar1
## 2618 Deficient Encapsulation,ar1
## 2619 Deficient Encapsulation,ar1
## 2620 Deficient Encapsulation,ar1
## 2621 Deficient Encapsulation,ar1
## 2622 Unutilized Abstraction,ar1
## 2623 Unutilized Abstraction,ar1
## 2624 Unutilized Abstraction,ar1,se1
## 2625 Unutilized Abstraction,ar1,se1
## 2626 Unutilized Abstraction,ar1,se1
## 2627 Unutilized Abstraction,ar1,se1
## 2628 Unutilized Abstraction,ar1,se1
## 2629 Unutilized Abstraction,ar1,se1
## 2630 Unutilized Abstraction,ar1,se1
## 2631 Unutilized Abstraction,ar1,se1
## 2632 Unutilized Abstraction,ar1,se1
## 2633 Unutilized Abstraction,ar1,se1
## 2634 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2635 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2636 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2637 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2638 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2639 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2640 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2641 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2642 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2643 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2644 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2645 Multifaceted Abstraction,ar1,et1,it1,gf1
## 2646 Deficient Encapsulation,ar1,et1,it1,gf1
## 2647 Deficient Encapsulation,ar1,et1,it1,gf1
## 2648 Deficient Encapsulation,ar1,et1,it1,gf1
## 2649 Deficient Encapsulation,ar1,et1,it1,gf1
## 2650 Deficient Encapsulation,ar1,et1,it1,gf1
## 2651 Deficient Encapsulation,ar1,et1,it1,gf1
## 2652 Deficient Encapsulation,ar1,et1,it1,gf1
## 2653 Deficient Encapsulation,ar1,et1,it1,gf1
## 2654 Deficient Encapsulation,ar1,et1,it1,gf1
## 2655 Deficient Encapsulation,ar1,et1,it1,gf1
## 2656 Deficient Encapsulation,ar1,et1,it1,gf1
## 2657 Deficient Encapsulation,ar1,et1,it1,gf1
## 2658 Insufficient Modularization,ar1,et1,it1
## 2659 Insufficient Modularization,ar1,et1,it1
## 2660 Insufficient Modularization,ar1,et1,it1
## 2661 Insufficient Modularization,ar1,et1,it1
## 2662 Insufficient Modularization,ar1,et1,it1
## 2663 Insufficient Modularization,ar1,et1,it1
## 2664 Insufficient Modularization,ar1,et1,it1
## 2665 Insufficient Modularization,ar1,et1,it1
## 2666 Insufficient Modularization,ar1,et1,it1
## 2667 Insufficient Modularization,ar1,et1,it1
## 2668 Insufficient Modularization,ar1,et1,it1
## 2669 Insufficient Modularization,ar1,et1,it1
## 2670 Unutilized Abstraction,et1,gf1
## 2671 Unutilized Abstraction,et1,gf1
## 2672 Unutilized Abstraction,et1,gf1
## 2673 Unutilized Abstraction,et1,gf1
## 2674 Unutilized Abstraction,et1,gf1
## 2675 Unutilized Abstraction,et1,gf1
## 2676 Unutilized Abstraction,et1,gf1
## 2677 Unutilized Abstraction,et1,gf1
## 2678 Unutilized Abstraction,et1,gf1
## 2679 Unutilized Abstraction,et1,gf1
## 2680 Unutilized Abstraction,et1,gf1
## 2681 Unutilized Abstraction,et1,gf1
## 2682 Unutilized Abstraction,ar1
## 2683 Unutilized Abstraction,ar1
## 2684 Unutilized Abstraction,ar1
## 2685 Unutilized Abstraction,ar1
## 2686 Unutilized Abstraction,ar1
## 2687 Unutilized Abstraction,ar1
## 2688 Unutilized Abstraction,ar1
## 2689 Unutilized Abstraction,ar1
## 2690 Unutilized Abstraction,ar1
## 2691 Unutilized Abstraction,ar1
## 2692 Unutilized Abstraction,ar1
## 2693 Unutilized Abstraction,ar1
## 2694 Insufficient Modularization,ar1,et1,it1,gf1
## 2695 Insufficient Modularization,ar1,et1,it1,gf1
## 2696 Insufficient Modularization,ar1,et1,it1,gf1
## 2697 Insufficient Modularization,ar1,et1,it1,gf1
## 2698 Insufficient Modularization,ar1,et1,it1,gf1
## 2699 Insufficient Modularization,ar1,et1,it1,gf1
## 2700 Insufficient Modularization,ar1,et1,it1,gf1
## 2701 Insufficient Modularization,ar1,et1,it1,gf1
## 2702 Insufficient Modularization,ar1,et1,it1,gf1
## 2703 Insufficient Modularization,ar1,et1,it1,gf1
## 2704 Insufficient Modularization,ar1,et1,it1,gf1
## 2705 Insufficient Modularization,ar1,et1,it1,gf1
## 2706 Feature Envy,ar1,et1,mg1,ro1
## 2707 Feature Envy,ar1,et1,mg1,ro1
## 2708 Feature Envy,ar1,et1,mg1,ro1
## 2709 Feature Envy,ar1,et1,mg1,ro1
## 2710 Feature Envy,ar1,et1,mg1,ro1
## 2711 Feature Envy,ar1,et1,mg1,ro1
## 2712 Feature Envy,ar1,et1,mg1,ro1
## 2713 Feature Envy,ar1,et1,mg1,ro1
## 2714 Feature Envy,ar1,et1,mg1,ro1
## 2715 Feature Envy,ar1,et1,mg1,ro1
## 2716 Feature Envy,ar1,et1,mg1,ro1
## 2717 Feature Envy,ar1,et1,mg1,ro1
## 2718 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2719 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2720 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2721 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2722 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2723 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2724 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2725 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2726 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2727 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2728 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2729 Deficient Encapsulation,ar1,et1,mg1,ro1
## 2730 Cyclically-dependent Modularization,et1
## 2731 Cyclically-dependent Modularization,et1
## 2732 Cyclically-dependent Modularization,et1
## 2733 Cyclically-dependent Modularization,et1
## 2734 Cyclically-dependent Modularization,et1
## 2735 Cyclically-dependent Modularization,et1
## 2736 Cyclically-dependent Modularization,et1
## 2737 Cyclically-dependent Modularization,et1
## 2738 Cyclically-dependent Modularization,et1
## 2739 Cyclically-dependent Modularization,et1
## 2740 Cyclically-dependent Modularization,et1
## 2741 Cyclically-dependent Modularization,et1
## 2742 Cyclically-dependent Modularization,et1
## 2743 Cyclically-dependent Modularization,et1
## 2744 Cyclically-dependent Modularization,ar1,et1
## 2745 Cyclically-dependent Modularization,ar1,et1
## 2746 Cyclically-dependent Modularization,ar1,et1
## 2747 Cyclically-dependent Modularization,ar1,et1
## 2748 Cyclically-dependent Modularization,ar1,et1
## 2749 Cyclically-dependent Modularization,ar1,et1
## 2750 Cyclically-dependent Modularization,ar1,et1
## 2751 Cyclically-dependent Modularization,ar1,et1
## 2752 Cyclically-dependent Modularization,ar1,et1
## 2753 Cyclically-dependent Modularization,ar1,et1
## 2754 Cyclically-dependent Modularization,ar1,et1
## 2755 Cyclically-dependent Modularization,ar1,et1
## 2756 Cyclically-dependent Modularization,ar1,et1
## 2757 Cyclically-dependent Modularization,ar1,et1
## 2758 Unnecessary Abstraction,ar1
## 2759 Unnecessary Abstraction,ar1
## 2760 Unnecessary Abstraction,ar1
## 2761 Unnecessary Abstraction,ar1
## 2762 Unnecessary Abstraction,ar1
## 2763 Unnecessary Abstraction,ar1
## 2764 Unnecessary Abstraction,ar1
## 2765 Unnecessary Abstraction,ar1
## 2766 Unnecessary Abstraction,ar1
## 2767 Unnecessary Abstraction,ar1
## 2768 Unnecessary Abstraction,ar1
## 2769 Unnecessary Abstraction,ar1
## 2770 Unutilized Abstraction,ar1
## 2771 Unutilized Abstraction,ar1
## 2772 Unutilized Abstraction,ar1
## 2773 Unutilized Abstraction,ar1
## 2774 Unutilized Abstraction,ar1
## 2775 Unutilized Abstraction,ar1
## 2776 Unutilized Abstraction,ar1
## 2777 Unutilized Abstraction,ar1
## 2778 Unutilized Abstraction,ar1
## 2779 Unutilized Abstraction,ar1
## 2780 Unutilized Abstraction,ar1
## 2781 Unutilized Abstraction,ar1
## 2782 Broken Hierarchy,ar1
## 2783 Broken Hierarchy,ar1
## 2784 Broken Hierarchy,ar1
## 2785 Broken Hierarchy,ar1
## 2786 Broken Hierarchy,ar1
## 2787 Broken Hierarchy,ar1
## 2788 Broken Hierarchy,ar1
## 2789 Broken Hierarchy,ar1
## 2790 Broken Hierarchy,ar1
## 2791 Broken Hierarchy,ar1
## 2792 Broken Hierarchy,ar1
## 2793 Broken Hierarchy,ar1
## 2794 Unutilized Abstraction,ar1
## 2795 Unutilized Abstraction,ar1
## 2796 Unutilized Abstraction,ar1
## 2797 Unutilized Abstraction,ar1
## 2798 Unutilized Abstraction,ar1
## 2799 Unutilized Abstraction,ar1
## 2800 Unutilized Abstraction,ar1
## 2801 Unutilized Abstraction,ar1
## 2802 Unutilized Abstraction,ar1
## 2803 Unutilized Abstraction,ar1
## 2804 Unutilized Abstraction,ar1
## 2805 Unutilized Abstraction,ar1
## 2806 Broken Hierarchy,ar1
## 2807 Broken Hierarchy,ar1
## 2808 Broken Hierarchy,ar1
## 2809 Broken Hierarchy,ar1
## 2810 Broken Hierarchy,ar1
## 2811 Broken Hierarchy,ar1
## 2812 Broken Hierarchy,ar1
## 2813 Broken Hierarchy,ar1
## 2814 Broken Hierarchy,ar1
## 2815 Broken Hierarchy,ar1
## 2816 Broken Hierarchy,ar1
## 2817 Broken Hierarchy,ar1
## 2818 Unnecessary Abstraction,ar1
## 2819 Unnecessary Abstraction,ar1
## 2820 Unnecessary Abstraction,ar1
## 2821 Unnecessary Abstraction,ar1
## 2822 Unnecessary Abstraction,ar1
## 2823 Unnecessary Abstraction,ar1
## 2824 Unnecessary Abstraction,ar1
## 2825 Unnecessary Abstraction,ar1
## 2826 Unnecessary Abstraction,ar1
## 2827 Unnecessary Abstraction,ar1
## 2828 Unnecessary Abstraction,ar1
## 2829 Unnecessary Abstraction,ar1
## 2830 Unutilized Abstraction,ar1
## 2831 Unutilized Abstraction,ar1
## 2832 Unutilized Abstraction,ar1
## 2833 Unutilized Abstraction,ar1
## 2834 Unutilized Abstraction,ar1
## 2835 Unutilized Abstraction,ar1
## 2836 Unutilized Abstraction,ar1
## 2837 Unutilized Abstraction,ar1
## 2838 Unutilized Abstraction,ar1
## 2839 Unutilized Abstraction,ar1
## 2840 Unutilized Abstraction,ar1
## 2841 Unutilized Abstraction,ar1
## 2842 Unutilized Abstraction,ar1
## 2843 Unutilized Abstraction,ar1
## 2844 Unutilized Abstraction,ar1
## 2845 Unutilized Abstraction,ar1
## 2846 Unutilized Abstraction,ar1
## 2847 Unutilized Abstraction,ar1
## 2848 Unutilized Abstraction,ar1
## 2849 Unutilized Abstraction,ar1
## 2850 Unutilized Abstraction,ar1
## 2851 Unutilized Abstraction,ar1
## 2852 Unutilized Abstraction,ar1
## 2853 Unutilized Abstraction,ar1
## 2854 Broken Hierarchy,ar1
## 2855 Broken Hierarchy,ar1
## 2856 Broken Hierarchy,ar1
## 2857 Broken Hierarchy,ar1
## 2858 Broken Hierarchy,ar1
## 2859 Broken Hierarchy,ar1
## 2860 Broken Hierarchy,ar1
## 2861 Broken Hierarchy,ar1
## 2862 Broken Hierarchy,ar1
## 2863 Broken Hierarchy,ar1
## 2864 Broken Hierarchy,ar1
## 2865 Broken Hierarchy,ar1
## 2866 Unnecessary Abstraction,ar1
## 2867 Unnecessary Abstraction,ar1
## 2868 Unnecessary Abstraction,ar1,se1
## 2869 Unnecessary Abstraction,ar1,se1
## 2870 Unnecessary Abstraction,ar1,se1
## 2871 Unnecessary Abstraction,ar1,se1
## 2872 Unnecessary Abstraction,ar1,se1
## 2873 Unnecessary Abstraction,ar1,se1
## 2874 Unnecessary Abstraction,ar1,se1
## 2875 Unnecessary Abstraction,ar1,se1
## 2876 Unnecessary Abstraction,ar1,se1
## 2877 Unnecessary Abstraction,ar1,se1
## 2878 Unutilized Abstraction,ar1
## 2879 Unutilized Abstraction,ar1
## 2880 Unutilized Abstraction,ar1,se1
## 2881 Unutilized Abstraction,ar1,se1
## 2882 Unutilized Abstraction,ar1,se1
## 2883 Unutilized Abstraction,ar1,se1
## 2884 Unutilized Abstraction,ar1,se1
## 2885 Unutilized Abstraction,ar1,se1
## 2886 Unutilized Abstraction,ar1,se1
## 2887 Unutilized Abstraction,ar1,se1
## 2888 Unutilized Abstraction,ar1,se1
## 2889 Unutilized Abstraction,ar1,se1
## 2890 Unutilized Abstraction,ar1,et1,gf1
## 2891 Unutilized Abstraction,ar1,et1,gf1
## 2892 Unutilized Abstraction,ar1,et1,gf1
## 2893 Unutilized Abstraction,ar1,et1,gf1
## 2894 Unutilized Abstraction,ar1,et1,gf1
## 2895 Unutilized Abstraction,ar1,et1,gf1
## 2896 Unutilized Abstraction,ar1,et1,gf1
## 2897 Unutilized Abstraction,ar1,et1,gf1
## 2898 Unutilized Abstraction,ar1,et1,gf1
## 2899 Unutilized Abstraction,ar1,et1,gf1
## 2900 Unutilized Abstraction,ar1,et1,gf1
## 2901 Unutilized Abstraction,ar1,et1,gf1
## 2902 Unutilized Abstraction,ar1
## 2903 Unutilized Abstraction,ar1
## 2904 Unutilized Abstraction,ar1
## 2905 Unutilized Abstraction,ar1
## 2906 Unutilized Abstraction,ar1
## 2907 Unutilized Abstraction,ar1
## 2908 Unutilized Abstraction,ar1
## 2909 Unutilized Abstraction,ar1
## 2910 Unutilized Abstraction,ar1
## 2911 Unutilized Abstraction,ar1
## 2912 Unutilized Abstraction,ar1
## 2913 Unutilized Abstraction,ar1
## 2914 Broken Hierarchy,ar1
## 2915 Broken Hierarchy,ar1
## 2916 Broken Hierarchy,ar1
## 2917 Broken Hierarchy,ar1
## 2918 Broken Hierarchy,ar1
## 2919 Broken Hierarchy,ar1
## 2920 Broken Hierarchy,ar1
## 2921 Broken Hierarchy,ar1
## 2922 Broken Hierarchy,ar1
## 2923 Broken Hierarchy,ar1
## 2924 Broken Hierarchy,ar1
## 2925 Broken Hierarchy,ar1
## 2926 Unutilized Abstraction,ar1,gf1
## 2927 Unutilized Abstraction,ar1,gf1
## 2928 Unutilized Abstraction,ar1,gf1
## 2929 Unutilized Abstraction,ar1,gf1
## 2930 Unutilized Abstraction,ar1,gf1
## 2931 Unutilized Abstraction,ar1,gf1
## 2932 Unutilized Abstraction,ar1,gf1
## 2933 Unutilized Abstraction,ar1,gf1
## 2934 Unutilized Abstraction,ar1,gf1
## 2935 Unutilized Abstraction,ar1,gf1
## 2936 Unutilized Abstraction,ar1,gf1
## 2937 Unutilized Abstraction,ar1,gf1
## 2938 Deficient Encapsulation,ar1,gf1
## 2939 Deficient Encapsulation,ar1,gf1
## 2940 Deficient Encapsulation,ar1,gf1
## 2941 Deficient Encapsulation,ar1,gf1
## 2942 Deficient Encapsulation,ar1,gf1
## 2943 Deficient Encapsulation,ar1,gf1
## 2944 Deficient Encapsulation,ar1,gf1
## 2945 Deficient Encapsulation,ar1,gf1
## 2946 Deficient Encapsulation,ar1,gf1
## 2947 Deficient Encapsulation,ar1,gf1
## 2948 Deficient Encapsulation,ar1,gf1
## 2949 Deficient Encapsulation,ar1,gf1
## 2950 Unutilized Abstraction,ar1
## 2951 Unutilized Abstraction,ar1
## 2952 Unutilized Abstraction,ar1
## 2953 Unutilized Abstraction,ar1
## 2954 Unutilized Abstraction,ar1
## 2955 Unutilized Abstraction,ar1
## 2956 Unutilized Abstraction,ar1
## 2957 Unutilized Abstraction,ar1
## 2958 Unutilized Abstraction,ar1
## 2959 Unutilized Abstraction,ar1
## 2960 Unutilized Abstraction,ar1
## 2961 Unutilized Abstraction,ar1
## 2962 Unutilized Abstraction,ar1,it1,gf1
## 2963 Unutilized Abstraction,ar1,it1,gf1
## 2964 Unutilized Abstraction,ar1,it1,gf1
## 2965 Unutilized Abstraction,ar1,it1,gf1
## 2966 Unutilized Abstraction,ar1,it1,gf1
## 2967 Unutilized Abstraction,ar1,it1,gf1
## 2968 Unutilized Abstraction,ar1,it1,gf1
## 2969 Unutilized Abstraction,ar1,it1,gf1
## 2970 Unutilized Abstraction,ar1,it1,gf1
## 2971 Unutilized Abstraction,ar1,it1,gf1
## 2972 Unutilized Abstraction,ar1,it1,gf1
## 2973 Unutilized Abstraction,ar1,it1,gf1
## 2974 Multifaceted Abstraction,ar1,gf1
## 2975 Multifaceted Abstraction,ar1,gf1
## 2976 Multifaceted Abstraction,ar1,gf1
## 2977 Multifaceted Abstraction,ar1,gf1
## 2978 Multifaceted Abstraction,ar1,gf1
## 2979 Multifaceted Abstraction,ar1,gf1
## 2980 Multifaceted Abstraction,ar1,gf1
## 2981 Multifaceted Abstraction,ar1,gf1
## 2982 Multifaceted Abstraction,ar1,gf1
## 2983 Multifaceted Abstraction,ar1,gf1
## 2984 Multifaceted Abstraction,ar1,gf1
## 2985 Multifaceted Abstraction,ar1,gf1
## 2986 Unutilized Abstraction,ar1,gf1
## 2987 Unutilized Abstraction,ar1,gf1
## 2988 Unutilized Abstraction,ar1,gf1
## 2989 Unutilized Abstraction,ar1,gf1
## 2990 Unutilized Abstraction,ar1,gf1
## 2991 Unutilized Abstraction,ar1,gf1
## 2992 Unutilized Abstraction,ar1,gf1
## 2993 Unutilized Abstraction,ar1,gf1
## 2994 Unutilized Abstraction,ar1,gf1
## 2995 Unutilized Abstraction,ar1,gf1
## 2996 Unutilized Abstraction,ar1,gf1
## 2997 Unutilized Abstraction,ar1,gf1
## 2998 Deficient Encapsulation,ar1,et1,gf1
## 2999 Deficient Encapsulation,ar1,et1,gf1
## 3000 Deficient Encapsulation,ar1,et1,gf1
## 3001 Deficient Encapsulation,ar1,et1,gf1
## 3002 Deficient Encapsulation,ar1,et1,gf1
## 3003 Deficient Encapsulation,ar1,et1,gf1
## 3004 Deficient Encapsulation,ar1,et1,gf1
## 3005 Deficient Encapsulation,ar1,et1,gf1
## 3006 Deficient Encapsulation,ar1,et1,gf1
## 3007 Deficient Encapsulation,ar1,et1,gf1
## 3008 Deficient Encapsulation,ar1,et1,gf1
## 3009 Deficient Encapsulation,ar1,et1,gf1
## 3010 Unutilized Abstraction,ar1
## 3011 Unutilized Abstraction,ar1
## 3012 Unutilized Abstraction,ar1
## 3013 Unutilized Abstraction,ar1
## 3014 Unutilized Abstraction,ar1
## 3015 Unutilized Abstraction,ar1
## 3016 Unutilized Abstraction,ar1
## 3017 Unutilized Abstraction,ar1
## 3018 Unutilized Abstraction,ar1
## 3019 Unutilized Abstraction,ar1
## 3020 Unutilized Abstraction,ar1
## 3021 Unutilized Abstraction,ar1
## 3022 Broken Hierarchy,ar1
## 3023 Broken Hierarchy,ar1
## 3024 Broken Hierarchy,ar1
## 3025 Broken Hierarchy,ar1
## 3026 Broken Hierarchy,ar1
## 3027 Broken Hierarchy,ar1
## 3028 Broken Hierarchy,ar1
## 3029 Broken Hierarchy,ar1
## 3030 Broken Hierarchy,ar1
## 3031 Broken Hierarchy,ar1
## 3032 Broken Hierarchy,ar1
## 3033 Broken Hierarchy,ar1
## 3034 Unutilized Abstraction,et1,it1
## 3035 Unutilized Abstraction,et1,it1
## 3036 Unutilized Abstraction,et1,it1
## 3037 Unutilized Abstraction,et1,it1
## 3038 Unutilized Abstraction,et1,it1
## 3039 Unutilized Abstraction,et1,it1
## 3040 Unutilized Abstraction,et1,it1
## 3041 Unutilized Abstraction,et1,it1
## 3042 Unutilized Abstraction,et1,it1
## 3043 Unutilized Abstraction,et1,it1
## 3044 Unutilized Abstraction,et1,it1
## 3045 Unutilized Abstraction,et1,it1
## 3046 Unutilized Abstraction,ar1
## 3047 Unutilized Abstraction,ar1
## 3048 Unutilized Abstraction,ar1
## 3049 Unutilized Abstraction,ar1,gf1
## 3050 Unutilized Abstraction,ar1,gf1
## 3051 Unutilized Abstraction,ar1,gf1
## 3052 Unutilized Abstraction,ar1,gf1
## 3053 Unutilized Abstraction,ar1,gf1
## 3054 Unutilized Abstraction,ar1,gf1
## 3055 Unutilized Abstraction,ar1,gf1
## 3056 Unutilized Abstraction,ar1,gf1
## 3057 Unutilized Abstraction,ar1,gf1
## 3058 Unutilized Abstraction,ar1
## 3059 Unutilized Abstraction,ar1
## 3060 Unutilized Abstraction,ar1
## 3061 Unutilized Abstraction,ar1
## 3062 Unutilized Abstraction,ar1
## 3063 Unutilized Abstraction,ar1
## 3064 Unutilized Abstraction,ar1,gf1
## 3065 Unutilized Abstraction,ar1,gf1
## 3066 Unutilized Abstraction,ar1,gf1
## 3067 Unutilized Abstraction,ar1,gf1
## 3068 Unutilized Abstraction,ar1,gf1
## 3069 Unutilized Abstraction,ar1,gf1
## 3070 Deficient Encapsulation,ar1
## 3071 Deficient Encapsulation,ar1
## 3072 Deficient Encapsulation,ar1
## 3073 Deficient Encapsulation,ar1
## 3074 Deficient Encapsulation,ar1
## 3075 Deficient Encapsulation,ar1
## 3076 Deficient Encapsulation,ar1,gf1
## 3077 Deficient Encapsulation,ar1,gf1
## 3078 Deficient Encapsulation,ar1,gf1
## 3079 Deficient Encapsulation,ar1,gf1
## 3080 Deficient Encapsulation,ar1,gf1
## 3081 Deficient Encapsulation,ar1,gf1
## 3082 Unutilized Abstraction,ar1
## 3083 Unutilized Abstraction,ar1
## 3084 Unutilized Abstraction,ar1
## 3085 Unutilized Abstraction,ar1
## 3086 Unutilized Abstraction,ar1
## 3087 Unutilized Abstraction,ar1
## 3088 Unutilized Abstraction,ar1
## 3089 Unutilized Abstraction,ar1
## 3090 Unutilized Abstraction,ar1
## 3091 Unutilized Abstraction,ar1
## 3092 Unutilized Abstraction,ar1
## 3093 Unutilized Abstraction,ar1
## 3094 Deficient Encapsulation,ar1
## 3095 Deficient Encapsulation,ar1
## 3096 Deficient Encapsulation,ar1
## 3097 Deficient Encapsulation,ar1
## 3098 Deficient Encapsulation,ar1
## 3099 Deficient Encapsulation,ar1
## 3100 Deficient Encapsulation,ar1
## 3101 Deficient Encapsulation,ar1
## 3102 Deficient Encapsulation,ar1
## 3103 Deficient Encapsulation,ar1
## 3104 Deficient Encapsulation,ar1
## 3105 Deficient Encapsulation,ar1
## 3106 Deficient Encapsulation,ar1
## 3107 Deficient Encapsulation,ar1
## 3108 Deficient Encapsulation,ar1
## 3109 Deficient Encapsulation,ar1
## 3110 Deficient Encapsulation,ar1
## 3111 Deficient Encapsulation,ar1
## 3112 Deficient Encapsulation,ar1
## 3113 Deficient Encapsulation,ar1
## 3114 Deficient Encapsulation,ar1
## 3115 Deficient Encapsulation,ar1
## 3116 Deficient Encapsulation,ar1
## 3117 Deficient Encapsulation,ar1
## 3118 Unutilized Abstraction,ar1
## 3119 Unutilized Abstraction,ar1
## 3120 Unutilized Abstraction,ar1
## 3121 Unutilized Abstraction,ar1
## 3122 Unutilized Abstraction,ar1
## 3123 Unutilized Abstraction,ar1
## 3124 Unutilized Abstraction,ar1
## 3125 Unutilized Abstraction,ar1
## 3126 Unutilized Abstraction,ar1
## 3127 Unutilized Abstraction,ar1
## 3128 Unutilized Abstraction,ar1
## 3129 Unutilized Abstraction,ar1
## 3130 Deficient Encapsulation,ar1
## 3131 Deficient Encapsulation,ar1
## 3132 Deficient Encapsulation,ar1
## 3133 Deficient Encapsulation,ar1
## 3134 Deficient Encapsulation,ar1
## 3135 Deficient Encapsulation,ar1
## 3136 Deficient Encapsulation,ar1
## 3137 Deficient Encapsulation,ar1
## 3138 Deficient Encapsulation,ar1
## 3139 Deficient Encapsulation,ar1
## 3140 Deficient Encapsulation,ar1
## 3141 Deficient Encapsulation,ar1
## 3142 Multifaceted Abstraction,ar1
## 3143 Multifaceted Abstraction,ar1
## 3144 Multifaceted Abstraction,ar1
## 3145 Multifaceted Abstraction,ar1
## 3146 Multifaceted Abstraction,ar1
## 3147 Multifaceted Abstraction,ar1
## 3148 Multifaceted Abstraction,ar1
## 3149 Multifaceted Abstraction,ar1
## 3150 Multifaceted Abstraction,ar1
## 3151 Multifaceted Abstraction,ar1
## 3152 Multifaceted Abstraction,ar1
## 3153 Multifaceted Abstraction,ar1
## 3154 Unutilized Abstraction,ar1
## 3155 Unutilized Abstraction,ar1
## 3156 Unutilized Abstraction,ar1
## 3157 Unutilized Abstraction,ar1
## 3158 Unutilized Abstraction,ar1
## 3159 Unutilized Abstraction,ar1
## 3160 Unutilized Abstraction,ar1
## 3161 Unutilized Abstraction,ar1
## 3162 Unutilized Abstraction,ar1
## 3163 Unutilized Abstraction,ar1
## 3164 Unutilized Abstraction,ar1
## 3165 Unutilized Abstraction,ar1
## 3166 Deficient Encapsulation,ar1
## 3167 Deficient Encapsulation,ar1
## 3168 Deficient Encapsulation,ar1
## 3169 Deficient Encapsulation,ar1
## 3170 Deficient Encapsulation,ar1
## 3171 Deficient Encapsulation,ar1
## 3172 Deficient Encapsulation,ar1
## 3173 Deficient Encapsulation,ar1
## 3174 Deficient Encapsulation,ar1
## 3175 Deficient Encapsulation,ar1
## 3176 Deficient Encapsulation,ar1
## 3177 Deficient Encapsulation,ar1
## 3178 Deficient Encapsulation,ar1
## 3179 Deficient Encapsulation,ar1
## 3180 Deficient Encapsulation,ar1
## 3181 Deficient Encapsulation,ar1
## 3182 Deficient Encapsulation,ar1
## 3183 Deficient Encapsulation,ar1
## 3184 Deficient Encapsulation,ar1
## 3185 Deficient Encapsulation,ar1
## 3186 Deficient Encapsulation,ar1
## 3187 Deficient Encapsulation,ar1
## 3188 Deficient Encapsulation,ar1
## 3189 Deficient Encapsulation,ar1
## 3190 Unnecessary Abstraction,ar1
## 3191 Unnecessary Abstraction,ar1
## 3192 Unnecessary Abstraction,ar1
## 3193 Unnecessary Abstraction,ar1
## 3194 Unnecessary Abstraction,ar1
## 3195 Unnecessary Abstraction,ar1
## 3196 Unnecessary Abstraction,ar1
## 3197 Unnecessary Abstraction,ar1
## 3198 Unnecessary Abstraction,ar1
## 3199 Unnecessary Abstraction,ar1
## 3200 Unnecessary Abstraction,ar1
## 3201 Unnecessary Abstraction,ar1
## 3202 Deficient Encapsulation,ar1
## 3203 Deficient Encapsulation,ar1
## 3204 Deficient Encapsulation,ar1
## 3205 Deficient Encapsulation,ar1
## 3206 Deficient Encapsulation,ar1
## 3207 Deficient Encapsulation,ar1
## 3208 Deficient Encapsulation,ar1
## 3209 Deficient Encapsulation,ar1
## 3210 Deficient Encapsulation,ar1
## 3211 Deficient Encapsulation,ar1
## 3212 Deficient Encapsulation,ar1
## 3213 Deficient Encapsulation,ar1
## 3214 Unnecessary Abstraction,ar1
## 3215 Unnecessary Abstraction,ar1
## 3216 Unnecessary Abstraction,ar1
## 3217 Unnecessary Abstraction,ar1
## 3218 Unnecessary Abstraction,ar1
## 3219 Unnecessary Abstraction,ar1
## 3220 Unnecessary Abstraction,ar1
## 3221 Unnecessary Abstraction,ar1
## 3222 Unnecessary Abstraction,ar1
## 3223 Unnecessary Abstraction,ar1
## 3224 Unnecessary Abstraction,ar1
## 3225 Unnecessary Abstraction,ar1
## 3226 Unutilized Abstraction,ar1,it1
## 3227 Unutilized Abstraction,ar1,it1
## 3228 Unutilized Abstraction,ar1,it1
## 3229 Unutilized Abstraction,ar1,it1
## 3230 Unutilized Abstraction,ar1,it1
## 3231 Unutilized Abstraction,ar1,it1
## 3232 Unutilized Abstraction,ar1,it1
## 3233 Unutilized Abstraction,ar1,it1
## 3234 Unutilized Abstraction,ar1,it1
## 3235 Unutilized Abstraction,ar1,it1
## 3236 Unutilized Abstraction,ar1,it1
## 3237 Unutilized Abstraction,ar1,it1
## 3238 Deficient Encapsulation,ar1,it1
## 3239 Deficient Encapsulation,ar1,it1
## 3240 Deficient Encapsulation,ar1,it1
## 3241 Deficient Encapsulation,ar1,it1
## 3242 Deficient Encapsulation,ar1,it1
## 3243 Deficient Encapsulation,ar1,it1
## 3244 Deficient Encapsulation,ar1,it1
## 3245 Deficient Encapsulation,ar1,it1
## 3246 Deficient Encapsulation,ar1,it1
## 3247 Deficient Encapsulation,ar1,it1
## 3248 Deficient Encapsulation,ar1,it1
## 3249 Deficient Encapsulation,ar1,it1
## 3250 Unutilized Abstraction,ar1,et1,gf1
## 3251 Unutilized Abstraction,ar1,et1,gf1
## 3252 Unutilized Abstraction,ar1,et1,gf1
## 3253 Unutilized Abstraction,ar1,et1,gf1
## 3254 Unutilized Abstraction,ar1,et1,gf1
## 3255 Unutilized Abstraction,ar1,et1,gf1
## 3256 Unutilized Abstraction,ar1,et1,gf1
## 3257 Unutilized Abstraction,ar1,et1,gf1
## 3258 Unutilized Abstraction,ar1,et1,gf1
## 3259 Unutilized Abstraction,ar1,et1,gf1
## 3260 Unutilized Abstraction,ar1,et1,gf1
## 3261 Unutilized Abstraction,ar1,et1,gf1
## 3262 Unnecessary Abstraction,ar1
## 3263 Unnecessary Abstraction,ar1
## 3264 Unnecessary Abstraction,ar1
## 3265 Unnecessary Abstraction,ar1
## 3266 Unnecessary Abstraction,ar1
## 3267 Unnecessary Abstraction,ar1
## 3268 Unnecessary Abstraction,ar1
## 3269 Unnecessary Abstraction,ar1
## 3270 Unnecessary Abstraction,ar1
## 3271 Unnecessary Abstraction,ar1
## 3272 Unnecessary Abstraction,ar1
## 3273 Unnecessary Abstraction,ar1
## 3274 Unutilized Abstraction,ar1
## 3275 Unutilized Abstraction,ar1
## 3276 Unutilized Abstraction,ar1
## 3277 Unutilized Abstraction,ar1
## 3278 Unutilized Abstraction,ar1
## 3279 Unutilized Abstraction,ar1
## 3280 Unutilized Abstraction,ar1
## 3281 Unutilized Abstraction,ar1
## 3282 Unutilized Abstraction,ar1
## 3283 Unutilized Abstraction,ar1
## 3284 Unutilized Abstraction,ar1
## 3285 Unutilized Abstraction,ar1
## 3286 Deficient Encapsulation,ar1
## 3287 Deficient Encapsulation,ar1
## 3288 Deficient Encapsulation,ar1
## 3289 Deficient Encapsulation,ar1
## 3290 Deficient Encapsulation,ar1
## 3291 Deficient Encapsulation,ar1
## 3292 Deficient Encapsulation,ar1
## 3293 Deficient Encapsulation,ar1
## 3294 Deficient Encapsulation,ar1
## 3295 Deficient Encapsulation,ar1
## 3296 Deficient Encapsulation,ar1
## 3297 Deficient Encapsulation,ar1
## 3298 Broken Modularization,ar1
## 3299 Broken Modularization,ar1
## 3300 Broken Modularization,ar1
## 3301 Broken Modularization,ar1
## 3302 Broken Modularization,ar1
## 3303 Broken Modularization,ar1
## 3304 Broken Modularization,ar1
## 3305 Broken Modularization,ar1
## 3306 Broken Modularization,ar1
## 3307 Broken Modularization,ar1
## 3308 Broken Modularization,ar1
## 3309 Broken Modularization,ar1
## 3310 Deficient Encapsulation,ar1
## 3311 Deficient Encapsulation,ar1
## 3312 Deficient Encapsulation,ar1
## 3313 Deficient Encapsulation,ar1
## 3314 Deficient Encapsulation,ar1
## 3315 Deficient Encapsulation,ar1
## 3316 Deficient Encapsulation,ar1
## 3317 Deficient Encapsulation,ar1
## 3318 Deficient Encapsulation,ar1
## 3319 Deficient Encapsulation,ar1
## 3320 Deficient Encapsulation,ar1
## 3321 Deficient Encapsulation,ar1
## 3322 Deficient Encapsulation,ar1
## 3323 Deficient Encapsulation,ar1
## 3324 Deficient Encapsulation,ar1
## 3325 Deficient Encapsulation,ar1
## 3326 Deficient Encapsulation,ar1
## 3327 Deficient Encapsulation,ar1
## 3328 Deficient Encapsulation,ar1
## 3329 Deficient Encapsulation,ar1
## 3330 Deficient Encapsulation,ar1
## 3331 Deficient Encapsulation,ar1
## 3332 Deficient Encapsulation,ar1
## 3333 Deficient Encapsulation,ar1
## 3334 Unutilized Abstraction,ar1
## 3335 Unutilized Abstraction,ar1
## 3336 Unutilized Abstraction,ar1
## 3337 Unutilized Abstraction,ar1
## 3338 Unutilized Abstraction,ar1
## 3339 Unutilized Abstraction,ar1
## 3340 Unutilized Abstraction,ar1
## 3341 Unutilized Abstraction,ar1
## 3342 Unutilized Abstraction,ar1
## 3343 Unutilized Abstraction,ar1
## 3344 Unutilized Abstraction,ar1
## 3345 Unutilized Abstraction,ar1
## 3346 Broken Modularization
## 3347 Broken Modularization
## 3348 Broken Modularization
## 3349 Broken Modularization
## 3350 Broken Modularization
## 3351 Broken Modularization
## 3352 Broken Modularization
## 3353 Broken Modularization
## 3354 Broken Modularization
## 3355 Broken Modularization
## 3356 Broken Modularization
## 3357 Broken Modularization
## 3358 Unutilized Abstraction,ar1,it1
## 3359 Unutilized Abstraction,ar1,it1
## 3360 Unutilized Abstraction,ar1,it1
## 3361 Unutilized Abstraction,ar1,it1,gf1
## 3362 Unutilized Abstraction,ar1,it1,gf1
## 3363 Unutilized Abstraction,ar1,it1,gf1
## 3364 Unutilized Abstraction,ar1,it1,gf1
## 3365 Unutilized Abstraction,ar1,it1,gf1
## 3366 Unutilized Abstraction,ar1,it1,gf1
## 3367 Unutilized Abstraction,ar1,it1,gf1
## 3368 Unutilized Abstraction,ar1,it1,gf1
## 3369 Unutilized Abstraction,ar1,it1,gf1
## 3370 Multifaceted Abstraction,ar1,et1,it1
## 3371 Multifaceted Abstraction,ar1,et1,it1
## 3372 Multifaceted Abstraction,ar1,et1,it1
## 3373 Multifaceted Abstraction,ar1,et1,it1
## 3374 Multifaceted Abstraction,ar1,et1,it1
## 3375 Multifaceted Abstraction,ar1,et1,it1
## 3376 Multifaceted Abstraction,ar1,et1,it1
## 3377 Multifaceted Abstraction,ar1,et1,it1
## 3378 Multifaceted Abstraction,ar1,et1,it1
## 3379 Multifaceted Abstraction,ar1,et1,it1
## 3380 Multifaceted Abstraction,ar1,et1,it1
## 3381 Multifaceted Abstraction,ar1,et1,it1
## 3382 Unutilized Abstraction,ar1
## 3383 Unutilized Abstraction,ar1
## 3384 Unutilized Abstraction,ar1
## 3385 Unutilized Abstraction,ar1
## 3386 Unutilized Abstraction,ar1
## 3387 Unutilized Abstraction,ar1
## 3388 Unutilized Abstraction,ar1
## 3389 Unutilized Abstraction,ar1
## 3390 Unutilized Abstraction,ar1
## 3391 Unutilized Abstraction,ar1
## 3392 Unutilized Abstraction,ar1
## 3393 Unutilized Abstraction,ar1
## 3394 Unutilized Abstraction,ar1
## 3395 Unutilized Abstraction,ar1
## 3396 Unutilized Abstraction,ar1
## 3397 Unutilized Abstraction,ar1
## 3398 Unutilized Abstraction,ar1
## 3399 Unutilized Abstraction,ar1
## 3400 Unutilized Abstraction,ar1
## 3401 Unutilized Abstraction,ar1
## 3402 Unutilized Abstraction,ar1
## 3403 Unutilized Abstraction,ar1
## 3404 Unutilized Abstraction,ar1
## 3405 Unutilized Abstraction,ar1
## 3406 Unutilized Abstraction,ar1
## 3407 Unutilized Abstraction,ar1
## 3408 Unutilized Abstraction,ar1
## 3409 Unutilized Abstraction,ar1
## 3410 Unutilized Abstraction,ar1
## 3411 Unutilized Abstraction,ar1
## 3412 Unutilized Abstraction,ar1
## 3413 Unutilized Abstraction,ar1
## 3414 Unutilized Abstraction,ar1
## 3415 Unutilized Abstraction,ar1
## 3416 Unutilized Abstraction,ar1
## 3417 Unutilized Abstraction,ar1
## 3418 Unutilized Abstraction,ar1
## 3419 Unutilized Abstraction,ar1
## 3420 Unutilized Abstraction,ar1
## 3421 Unutilized Abstraction,ar1
## 3422 Unutilized Abstraction,ar1
## 3423 Unutilized Abstraction,ar1
## 3424 Unutilized Abstraction,ar1
## 3425 Unutilized Abstraction,ar1
## 3426 Unnecessary Abstraction,ar1
## 3427 Unnecessary Abstraction,ar1
## 3428 Unnecessary Abstraction,ar1
## 3429 Unnecessary Abstraction,ar1
## 3430 Unnecessary Abstraction,ar1
## 3431 Unnecessary Abstraction,ar1
## 3432 Unnecessary Abstraction,ar1
## 3433 Unnecessary Abstraction,ar1
## 3434 Unnecessary Abstraction,ar1
## 3435 Unnecessary Abstraction,ar1
## 3436 Unnecessary Abstraction,ar1
## 3437 Unnecessary Abstraction,ar1
## 3438 Unutilized Abstraction,ar1
## 3439 Unutilized Abstraction,ar1
## 3440 Unutilized Abstraction,ar1
## 3441 Unutilized Abstraction,ar1
## 3442 Unutilized Abstraction,ar1
## 3443 Unutilized Abstraction,ar1
## 3444 Unutilized Abstraction,ar1
## 3445 Unutilized Abstraction,ar1
## 3446 Unutilized Abstraction,ar1
## 3447 Unutilized Abstraction,ar1
## 3448 Unutilized Abstraction,ar1
## 3449 Unutilized Abstraction,ar1
## 3450 Unnecessary Abstraction,ar1
## 3451 Unnecessary Abstraction,ar1
## 3452 Unnecessary Abstraction,ar1
## 3453 Unnecessary Abstraction,ar1
## 3454 Unnecessary Abstraction,ar1
## 3455 Unnecessary Abstraction,ar1
## 3456 Unnecessary Abstraction,ar1
## 3457 Unnecessary Abstraction,ar1
## 3458 Unnecessary Abstraction,ar1
## 3459 Unnecessary Abstraction,ar1
## 3460 Unutilized Abstraction,ar1
## 3461 Unutilized Abstraction,ar1
## 3462 Unutilized Abstraction,ar1
## 3463 Unutilized Abstraction,ar1
## 3464 Unutilized Abstraction,ar1
## 3465 Unutilized Abstraction,ar1
## 3466 Unutilized Abstraction,ar1
## 3467 Unutilized Abstraction,ar1
## 3468 Unutilized Abstraction,ar1
## 3469 Unutilized Abstraction,ar1
## 3470 Unutilized Abstraction,ar1,gf1
## 3471 Unutilized Abstraction,ar1,gf1
## 3472 Unutilized Abstraction,ar1,gf1
## 3473 Unutilized Abstraction,ar1,gf1
## 3474 Unutilized Abstraction,ar1,gf1
## 3475 Unutilized Abstraction,ar1,gf1
## 3476 Unutilized Abstraction,ar1,gf1
## 3477 Unutilized Abstraction,ar1,gf1
## 3478 Unutilized Abstraction,ar1,gf1
## 3479 Unutilized Abstraction,ar1,gf1
## 3480 Unutilized Abstraction,ar1,gf1
## 3481 Unutilized Abstraction,ar1,gf1
## 3482 Deficient Encapsulation,ar1
## 3483 Deficient Encapsulation,ar1
## 3484 Deficient Encapsulation,ar1
## 3485 Deficient Encapsulation,ar1
## 3486 Deficient Encapsulation,ar1
## 3487 Deficient Encapsulation,ar1
## 3488 Deficient Encapsulation,ar1
## 3489 Deficient Encapsulation,ar1
## 3490 Deficient Encapsulation,ar1
## 3491 Deficient Encapsulation,ar1
## 3492 Deficient Encapsulation,ar1
## 3493 Deficient Encapsulation,ar1
## 3494 Deficient Encapsulation,ar1
## 3495 Deficient Encapsulation,ar1
## 3496 Deficient Encapsulation,ar1
## 3497 Deficient Encapsulation,ar1
## 3498 Deficient Encapsulation,ar1
## 3499 Deficient Encapsulation,ar1
## 3500 Deficient Encapsulation,ar1
## 3501 Deficient Encapsulation,ar1
## 3502 Deficient Encapsulation,ar1
## 3503 Deficient Encapsulation,ar1
## 3504 Deficient Encapsulation,ar1
## 3505 Deficient Encapsulation,ar1
## 3506 Unutilized Abstraction,ar1
## 3507 Unutilized Abstraction,ar1
## 3508 Unutilized Abstraction,ar1,se1
## 3509 Unutilized Abstraction,ar1,se1
## 3510 Unutilized Abstraction,ar1,se1
## 3511 Unutilized Abstraction,ar1,se1
## 3512 Unutilized Abstraction,ar1,se1
## 3513 Unutilized Abstraction,ar1,se1
## 3514 Unutilized Abstraction,ar1,se1
## 3515 Unutilized Abstraction,ar1,se1
## 3516 Unutilized Abstraction,ar1,se1
## 3517 Unutilized Abstraction,ar1,se1
## 3518 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3519 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3520 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3521 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3522 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3523 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3524 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3525 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3526 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3527 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3528 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3529 Multifaceted Abstraction,ar1,et1,it1,gf1
## 3530 Deficient Encapsulation,ar1,et1,it1,gf1
## 3531 Deficient Encapsulation,ar1,et1,it1,gf1
## 3532 Deficient Encapsulation,ar1,et1,it1,gf1
## 3533 Deficient Encapsulation,ar1,et1,it1,gf1
## 3534 Deficient Encapsulation,ar1,et1,it1,gf1
## 3535 Deficient Encapsulation,ar1,et1,it1,gf1
## 3536 Deficient Encapsulation,ar1,et1,it1,gf1
## 3537 Deficient Encapsulation,ar1,et1,it1,gf1
## 3538 Deficient Encapsulation,ar1,et1,it1,gf1
## 3539 Deficient Encapsulation,ar1,et1,it1,gf1
## 3540 Deficient Encapsulation,ar1,et1,it1,gf1
## 3541 Deficient Encapsulation,ar1,et1,it1,gf1
## 3542 Insufficient Modularization,ar1,et1,it1
## 3543 Insufficient Modularization,ar1,et1,it1
## 3544 Insufficient Modularization,ar1,et1,it1
## 3545 Insufficient Modularization,ar1,et1,it1
## 3546 Insufficient Modularization,ar1,et1,it1
## 3547 Insufficient Modularization,ar1,et1,it1
## 3548 Insufficient Modularization,ar1,et1,it1
## 3549 Insufficient Modularization,ar1,et1,it1
## 3550 Insufficient Modularization,ar1,et1,it1
## 3551 Insufficient Modularization,ar1,et1,it1
## 3552 Insufficient Modularization,ar1,et1,it1
## 3553 Insufficient Modularization,ar1,et1,it1
## 3554 Unutilized Abstraction,et1,gf1
## 3555 Unutilized Abstraction,et1,gf1
## 3556 Unutilized Abstraction,et1,gf1
## 3557 Unutilized Abstraction,et1,gf1
## 3558 Unutilized Abstraction,et1,gf1
## 3559 Unutilized Abstraction,et1,gf1
## 3560 Unutilized Abstraction,et1,gf1
## 3561 Unutilized Abstraction,et1,gf1
## 3562 Unutilized Abstraction,et1,gf1
## 3563 Unutilized Abstraction,et1,gf1
## 3564 Unutilized Abstraction,et1,gf1
## 3565 Unutilized Abstraction,et1,gf1
## 3566 Unutilized Abstraction,ar1
## 3567 Unutilized Abstraction,ar1
## 3568 Unutilized Abstraction,ar1
## 3569 Unutilized Abstraction,ar1
## 3570 Unutilized Abstraction,ar1
## 3571 Unutilized Abstraction,ar1
## 3572 Unutilized Abstraction,ar1
## 3573 Unutilized Abstraction,ar1
## 3574 Unutilized Abstraction,ar1
## 3575 Unutilized Abstraction,ar1
## 3576 Unutilized Abstraction,ar1
## 3577 Unutilized Abstraction,ar1
## 3578 Insufficient Modularization,ar1,et1,it1,gf1
## 3579 Insufficient Modularization,ar1,et1,it1,gf1
## 3580 Insufficient Modularization,ar1,et1,it1,gf1
## 3581 Insufficient Modularization,ar1,et1,it1,gf1
## 3582 Insufficient Modularization,ar1,et1,it1,gf1
## 3583 Insufficient Modularization,ar1,et1,it1,gf1
## 3584 Insufficient Modularization,ar1,et1,it1,gf1
## 3585 Insufficient Modularization,ar1,et1,it1,gf1
## 3586 Insufficient Modularization,ar1,et1,it1,gf1
## 3587 Insufficient Modularization,ar1,et1,it1,gf1
## 3588 Insufficient Modularization,ar1,et1,it1,gf1
## 3589 Insufficient Modularization,ar1,et1,it1,gf1
## 3590 Feature Envy,ar1,et1,mg1,ro1
## 3591 Feature Envy,ar1,et1,mg1,ro1
## 3592 Feature Envy,ar1,et1,mg1,ro1
## 3593 Feature Envy,ar1,et1,mg1,ro1
## 3594 Feature Envy,ar1,et1,mg1,ro1
## 3595 Feature Envy,ar1,et1,mg1,ro1
## 3596 Feature Envy,ar1,et1,mg1,ro1
## 3597 Feature Envy,ar1,et1,mg1,ro1
## 3598 Feature Envy,ar1,et1,mg1,ro1
## 3599 Feature Envy,ar1,et1,mg1,ro1
## 3600 Feature Envy,ar1,et1,mg1,ro1
## 3601 Feature Envy,ar1,et1,mg1,ro1
## 3602 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3603 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3604 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3605 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3606 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3607 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3608 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3609 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3610 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3611 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3612 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3613 Deficient Encapsulation,ar1,et1,mg1,ro1
## 3614 Cyclically-dependent Modularization,et1
## 3615 Cyclically-dependent Modularization,et1
## 3616 Cyclically-dependent Modularization,et1
## 3617 Cyclically-dependent Modularization,et1
## 3618 Cyclically-dependent Modularization,et1
## 3619 Cyclically-dependent Modularization,et1
## 3620 Cyclically-dependent Modularization,et1
## 3621 Cyclically-dependent Modularization,et1
## 3622 Cyclically-dependent Modularization,et1
## 3623 Cyclically-dependent Modularization,et1
## 3624 Cyclically-dependent Modularization,et1
## 3625 Cyclically-dependent Modularization,et1
## 3626 Cyclically-dependent Modularization,et1
## 3627 Cyclically-dependent Modularization,et1
## 3628 Cyclically-dependent Modularization,ar1,et1
## 3629 Cyclically-dependent Modularization,ar1,et1
## 3630 Cyclically-dependent Modularization,ar1,et1
## 3631 Cyclically-dependent Modularization,ar1,et1
## 3632 Cyclically-dependent Modularization,ar1,et1
## 3633 Cyclically-dependent Modularization,ar1,et1
## 3634 Cyclically-dependent Modularization,ar1,et1
## 3635 Cyclically-dependent Modularization,ar1,et1
## 3636 Cyclically-dependent Modularization,ar1,et1
## 3637 Cyclically-dependent Modularization,ar1,et1
## 3638 Cyclically-dependent Modularization,ar1,et1
## 3639 Cyclically-dependent Modularization,ar1,et1
## 3640 Cyclically-dependent Modularization,ar1,et1
## 3641 Cyclically-dependent Modularization,ar1,et1
## 3642 Unnecessary Abstraction,ar1
## 3643 Unnecessary Abstraction,ar1
## 3644 Unnecessary Abstraction,ar1
## 3645 Unnecessary Abstraction,ar1
## 3646 Unnecessary Abstraction,ar1
## 3647 Unnecessary Abstraction,ar1
## 3648 Unnecessary Abstraction,ar1
## 3649 Unnecessary Abstraction,ar1
## 3650 Unnecessary Abstraction,ar1
## 3651 Unnecessary Abstraction,ar1
## 3652 Unnecessary Abstraction,ar1
## 3653 Unnecessary Abstraction,ar1
## 3654 Unutilized Abstraction,ar1
## 3655 Unutilized Abstraction,ar1
## 3656 Unutilized Abstraction,ar1
## 3657 Unutilized Abstraction,ar1
## 3658 Unutilized Abstraction,ar1
## 3659 Unutilized Abstraction,ar1
## 3660 Unutilized Abstraction,ar1
## 3661 Unutilized Abstraction,ar1
## 3662 Unutilized Abstraction,ar1
## 3663 Unutilized Abstraction,ar1
## 3664 Unutilized Abstraction,ar1
## 3665 Unutilized Abstraction,ar1
## 3666 Broken Hierarchy,ar1
## 3667 Broken Hierarchy,ar1
## 3668 Broken Hierarchy,ar1
## 3669 Broken Hierarchy,ar1
## 3670 Broken Hierarchy,ar1
## 3671 Broken Hierarchy,ar1
## 3672 Broken Hierarchy,ar1
## 3673 Broken Hierarchy,ar1
## 3674 Broken Hierarchy,ar1
## 3675 Broken Hierarchy,ar1
## 3676 Broken Hierarchy,ar1
## 3677 Broken Hierarchy,ar1
## 3678 Unutilized Abstraction,ar1
## 3679 Unutilized Abstraction,ar1
## 3680 Unutilized Abstraction,ar1
## 3681 Unutilized Abstraction,ar1
## 3682 Unutilized Abstraction,ar1
## 3683 Unutilized Abstraction,ar1
## 3684 Unutilized Abstraction,ar1
## 3685 Unutilized Abstraction,ar1
## 3686 Unutilized Abstraction,ar1
## 3687 Unutilized Abstraction,ar1
## 3688 Unutilized Abstraction,ar1
## 3689 Unutilized Abstraction,ar1
## 3690 Broken Hierarchy,ar1
## 3691 Broken Hierarchy,ar1
## 3692 Broken Hierarchy,ar1
## 3693 Broken Hierarchy,ar1
## 3694 Broken Hierarchy,ar1
## 3695 Broken Hierarchy,ar1
## 3696 Broken Hierarchy,ar1
## 3697 Broken Hierarchy,ar1
## 3698 Broken Hierarchy,ar1
## 3699 Broken Hierarchy,ar1
## 3700 Broken Hierarchy,ar1
## 3701 Broken Hierarchy,ar1
## 3702 Unnecessary Abstraction,ar1
## 3703 Unnecessary Abstraction,ar1
## 3704 Unnecessary Abstraction,ar1
## 3705 Unnecessary Abstraction,ar1
## 3706 Unnecessary Abstraction,ar1
## 3707 Unnecessary Abstraction,ar1
## 3708 Unnecessary Abstraction,ar1
## 3709 Unnecessary Abstraction,ar1
## 3710 Unnecessary Abstraction,ar1
## 3711 Unnecessary Abstraction,ar1
## 3712 Unnecessary Abstraction,ar1
## 3713 Unnecessary Abstraction,ar1
## 3714 Unutilized Abstraction,ar1
## 3715 Unutilized Abstraction,ar1
## 3716 Unutilized Abstraction,ar1
## 3717 Unutilized Abstraction,ar1
## 3718 Unutilized Abstraction,ar1
## 3719 Unutilized Abstraction,ar1
## 3720 Unutilized Abstraction,ar1
## 3721 Unutilized Abstraction,ar1
## 3722 Unutilized Abstraction,ar1
## 3723 Unutilized Abstraction,ar1
## 3724 Unutilized Abstraction,ar1
## 3725 Unutilized Abstraction,ar1
## 3726 Unutilized Abstraction,ar1
## 3727 Unutilized Abstraction,ar1
## 3728 Unutilized Abstraction,ar1
## 3729 Unutilized Abstraction,ar1
## 3730 Unutilized Abstraction,ar1
## 3731 Unutilized Abstraction,ar1
## 3732 Unutilized Abstraction,ar1
## 3733 Unutilized Abstraction,ar1
## 3734 Unutilized Abstraction,ar1
## 3735 Unutilized Abstraction,ar1
## 3736 Unutilized Abstraction,ar1
## 3737 Unutilized Abstraction,ar1
## 3738 Broken Hierarchy,ar1
## 3739 Broken Hierarchy,ar1
## 3740 Broken Hierarchy,ar1
## 3741 Broken Hierarchy,ar1
## 3742 Broken Hierarchy,ar1
## 3743 Broken Hierarchy,ar1
## 3744 Broken Hierarchy,ar1
## 3745 Broken Hierarchy,ar1
## 3746 Broken Hierarchy,ar1
## 3747 Broken Hierarchy,ar1
## 3748 Broken Hierarchy,ar1
## 3749 Broken Hierarchy,ar1
## 3750 Unnecessary Abstraction,ar1
## 3751 Unnecessary Abstraction,ar1
## 3752 Unnecessary Abstraction,ar1,se1
## 3753 Unnecessary Abstraction,ar1,se1
## 3754 Unnecessary Abstraction,ar1,se1
## 3755 Unnecessary Abstraction,ar1,se1
## 3756 Unnecessary Abstraction,ar1,se1
## 3757 Unnecessary Abstraction,ar1,se1
## 3758 Unnecessary Abstraction,ar1,se1
## 3759 Unnecessary Abstraction,ar1,se1
## 3760 Unnecessary Abstraction,ar1,se1
## 3761 Unnecessary Abstraction,ar1,se1
## 3762 Unutilized Abstraction,ar1
## 3763 Unutilized Abstraction,ar1
## 3764 Unutilized Abstraction,ar1,se1
## 3765 Unutilized Abstraction,ar1,se1
## 3766 Unutilized Abstraction,ar1,se1
## 3767 Unutilized Abstraction,ar1,se1
## 3768 Unutilized Abstraction,ar1,se1
## 3769 Unutilized Abstraction,ar1,se1
## 3770 Unutilized Abstraction,ar1,se1
## 3771 Unutilized Abstraction,ar1,se1
## 3772 Unutilized Abstraction,ar1,se1
## 3773 Unutilized Abstraction,ar1,se1
## 3774 Unutilized Abstraction,ar1,et1,gf1
## 3775 Unutilized Abstraction,ar1,et1,gf1
## 3776 Unutilized Abstraction,ar1,et1,gf1
## 3777 Unutilized Abstraction,ar1,et1,gf1
## 3778 Unutilized Abstraction,ar1,et1,gf1
## 3779 Unutilized Abstraction,ar1,et1,gf1
## 3780 Unutilized Abstraction,ar1,et1,gf1
## 3781 Unutilized Abstraction,ar1,et1,gf1
## 3782 Unutilized Abstraction,ar1,et1,gf1
## 3783 Unutilized Abstraction,ar1,et1,gf1
## 3784 Unutilized Abstraction,ar1,et1,gf1
## 3785 Unutilized Abstraction,ar1,et1,gf1
## 3786 Unutilized Abstraction,ar1
## 3787 Unutilized Abstraction,ar1
## 3788 Unutilized Abstraction,ar1
## 3789 Unutilized Abstraction,ar1
## 3790 Unutilized Abstraction,ar1
## 3791 Unutilized Abstraction,ar1
## 3792 Unutilized Abstraction,ar1
## 3793 Unutilized Abstraction,ar1
## 3794 Unutilized Abstraction,ar1
## 3795 Unutilized Abstraction,ar1
## 3796 Unutilized Abstraction,ar1
## 3797 Unutilized Abstraction,ar1
## 3798 Broken Hierarchy,ar1
## 3799 Broken Hierarchy,ar1
## 3800 Broken Hierarchy,ar1
## 3801 Broken Hierarchy,ar1
## 3802 Broken Hierarchy,ar1
## 3803 Broken Hierarchy,ar1
## 3804 Broken Hierarchy,ar1
## 3805 Broken Hierarchy,ar1
## 3806 Broken Hierarchy,ar1
## 3807 Broken Hierarchy,ar1
## 3808 Broken Hierarchy,ar1
## 3809 Broken Hierarchy,ar1
## 3810 Unutilized Abstraction,ar1,gf1
## 3811 Unutilized Abstraction,ar1,gf1
## 3812 Unutilized Abstraction,ar1,gf1
## 3813 Unutilized Abstraction,ar1,gf1
## 3814 Unutilized Abstraction,ar1,gf1
## 3815 Unutilized Abstraction,ar1,gf1
## 3816 Unutilized Abstraction,ar1,gf1
## 3817 Unutilized Abstraction,ar1,gf1
## 3818 Unutilized Abstraction,ar1,gf1
## 3819 Unutilized Abstraction,ar1,gf1
## 3820 Unutilized Abstraction,ar1,gf1
## 3821 Unutilized Abstraction,ar1,gf1
## 3822 Deficient Encapsulation,ar1,gf1
## 3823 Deficient Encapsulation,ar1,gf1
## 3824 Deficient Encapsulation,ar1,gf1
## 3825 Deficient Encapsulation,ar1,gf1
## 3826 Deficient Encapsulation,ar1,gf1
## 3827 Deficient Encapsulation,ar1,gf1
## 3828 Deficient Encapsulation,ar1,gf1
## 3829 Deficient Encapsulation,ar1,gf1
## 3830 Deficient Encapsulation,ar1,gf1
## 3831 Deficient Encapsulation,ar1,gf1
## 3832 Deficient Encapsulation,ar1,gf1
## 3833 Deficient Encapsulation,ar1,gf1
## 3834 Unutilized Abstraction,ar1
## 3835 Unutilized Abstraction,ar1
## 3836 Unutilized Abstraction,ar1
## 3837 Unutilized Abstraction,ar1
## 3838 Unutilized Abstraction,ar1
## 3839 Unutilized Abstraction,ar1
## 3840 Unutilized Abstraction,ar1
## 3841 Unutilized Abstraction,ar1
## 3842 Unutilized Abstraction,ar1
## 3843 Unutilized Abstraction,ar1
## 3844 Unutilized Abstraction,ar1
## 3845 Unutilized Abstraction,ar1
## 3846 Unutilized Abstraction,ar1,it1,gf1
## [ reached 'max' / getOption("max.print") -- omitted 399061 rows ]
Before applying Association Rule mining, we need to convert dataframe into transaction data so that all smells that appears together in one class are in one row.
We can group smells using NameClass. We need this grouping and apply a function on it and store the output in another dataframe. This can be done by ddply.
The following lines of code will combine all set of smells from one ClassName as one row. Each set of smells is separated by ,.
library(plyr)
#ddply(dataframe, variables_to_be_used_to_split_data_frame, function_to_be_applied)
transactionData <- ddply(df_join,c("ClassName"),
function(df_join)paste(df_join$Smells,
collapse = ","))
#The R function paste() concatenates vectors to character and separated results using collapse=[any optional charcater string ]. Here ',' is used
Next, as ClassName will not be of any use in the rule mining, we can set it to NULL.
transactionData$ClassName <- NULL
This format for transaction data is called the basket format. Next, you have to store this transaction data into a .csv (Comma Separated Values) file. For this, write.csv().
write.csv(transactionData,"transactions.csv", quote = FALSE, row.names = FALSE)
We load this transaction data into an object of the transaction class. This is done by using the R function read.transactions of the arules package.
The following line of code will take transaction data file transactions.csv which is in basket format and convert it into an object of the transaction class.
tr <- read.transactions('transactions.csv', format = 'basket', sep=',')
## Warning in asMethod(object): removing duplicated items in transactions
tr
## transactions in sparse format with
## 1269 transactions (rows) and
## 25 items (columns)
summary(tr)
## transactions as itemMatrix in sparse format with
## 1269 rows (elements/itemsets/transactions) and
## 25 columns (items) and a density of 0.1374626
##
## most frequent items:
## ar1 et1
## 1023 998
## Deficient Encapsulation Insufficient Modularization
## 369 336
## Unutilized Abstraction (Other)
## 332 1303
##
## element (itemset/transaction) length distribution:
## sizes
## 1 2 3 4 5 6 7 8 9
## 61 183 454 372 135 47 11 4 2
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 1.000 3.000 3.000 3.437 4.000 9.000
##
## includes extended item information - examples:
## labels
## 1 ar1
## 2 Broken Hierarchy
## 3 Broken Modularization
The summary(tr) is a very useful command that gives us information about our transaction object. Let’s take a look at what the above output says:
There are 1269 transactions (rows) and 25 items (columns). Note that 25 are the smells involved in the dataset and 1269 transactions are collections of these items.
Density tells the percentage of non-zero cells in a sparse matrix. You can say it as the total number of smells that are detected divided by a possible number of smells in that matrix. You can calculate how many items were purchased by using density: 1269x25x0.1374626=4361.0
You can generate an itemFrequencyPlot to create an item Frequency Bar Plot to view the distribution of items.
# Create an item frequency plot for the top 20 items
if (!require("RColorBrewer")) {
# install color package of R
install.packages("RColorBrewer")
#include library RColorBrewer
library(RColorBrewer)
}
## Caricamento del pacchetto richiesto: RColorBrewer
itemFrequencyPlot(tr,topN=20,type="absolute",col=brewer.pal(8,'Pastel2'), main="Absolute Item Frequency Plot")
In itemFrequencyPlot(tr,topN=20,type="absolute") first argument is the transaction object to be plotted that is tr. topN allows you to plot top N highest frequency items. type can be type="absolute" or type="relative". If absolute it will plot numeric frequencies of each item independently. If relative it will plot how many times these items have appeared as compared to others.
itemFrequencyPlot(tr,topN=20,type="relative",col=brewer.pal(8,'Pastel2'),main="Relative Item Frequency Plot")
Next step is to mine the rules using the APRIORI algorithm. The function apriori() is from package arules.
design_smells = c('Deficient Encapsulation', 'Unutilized Abstraction', 'Feature Envy', 'Broken Hierarchy', 'Broken Modularization', 'Insufficient Modularization', 'Wide Hierarchy', 'Unnecessary Abstraction', 'Multifaceted Abstraction', 'Cyclically-dependent Modularization','Cyclic Hierarchy', 'Rebellious Hierarchy')
test_smells = c("ar1", "et1", "it1", "gf1", "se1", "mg1", "ro1")
# Min Support as 0.001, confidence as 0.8.
association.rules <- apriori(tr, parameter = list(supp=0.001, conf=0.8, minlen=2, maxlen=2),
appearance = list(lhs=design_smells, rhs=test_smells))
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.001 2
## maxlen target ext
## 2 rules TRUE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 1
##
## set item appearances ...[19 item(s)] done [0.00s].
## set transactions ...[19 item(s), 1269 transaction(s)] done [0.00s].
## sorting and recoding items ... [18 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2
## Warning in apriori(tr, parameter = list(supp = 0.001, conf = 0.8, minlen = 2, :
## Mining stopped (maxlen reached). Only patterns up to a length of 2 returned!
## done [0.00s].
## writing ... [9 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
The apriori will take tr as the transaction object on which mining is to be applied. parameter will allow you to set min_sup and min_confidence. The default values for parameter are minimum support of 0.1, the minimum confidence of 0.8, maximum of 2 items (maxlen), minimum of 2 items (minlen). With appearance we specified the LHS (IF part) with the array of design_smell and RHS (THEN part) with the test_smell.
summary(association.rules)
## set of 9 rules
##
## rule length distribution (lhs + rhs):sizes
## 2
## 9
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 2 2 2 2 2 2
##
## summary of quality measures:
## support confidence coverage lift
## Min. :0.01024 Min. :0.8125 Min. :0.01261 Min. :1.033
## 1st Qu.:0.05910 1st Qu.:0.8542 1st Qu.:0.06777 1st Qu.:1.072
## Median :0.14657 Median :0.8721 Median :0.15997 Median :1.082
## Mean :0.14097 Mean :0.8910 Mean :0.15936 Mean :1.121
## 3rd Qu.:0.24586 3rd Qu.:0.9163 3rd Qu.:0.26478 3rd Qu.:1.165
## Max. :0.25374 Max. :1.0000 Max. :0.29078 Max. :1.240
## count
## Min. : 13.0
## 1st Qu.: 75.0
## Median :186.0
## Mean :178.9
## 3rd Qu.:312.0
## Max. :322.0
##
## mining info:
## data ntransactions support confidence
## tr 1269 0.001 0.8
summary(association.rules) shows the following:
Parameter Specification: min_sup=0.001 and min_confidence=0.8 values with 2 items as max of items in a rule and 2 items as min of items in a rule.
Total number of rules: The set of 9 rules
Summary of Quality measures: Min and max values for Support, Confidence and, Lift.
Information used for creating rules: The data, support, and confidence we provided to the algorithm.
Since there are 9 rules, we don’t have to filter only the top 10:
inspect(association.rules)
## lhs rhs support confidence
## [1] {Cyclic Hierarchy} => {et1} 0.01024429 0.8125000
## [2] {Multifaceted Abstraction} => {ar1} 0.01497242 1.0000000
## [3] {Feature Envy} => {et1} 0.06067770 0.8953488
## [4] {Feature Envy} => {ar1} 0.05910165 0.8720930
## [5] {Cyclically-dependent Modularization} => {et1} 0.14657210 0.9162562
## [6] {Insufficient Modularization} => {et1} 0.25374310 0.9583333
## [7] {Insufficient Modularization} => {ar1} 0.22616233 0.8541667
## [8] {Deficient Encapsulation} => {et1} 0.24586288 0.8455285
## [9] {Deficient Encapsulation} => {ar1} 0.25137904 0.8644986
## coverage lift count
## [1] 0.01260835 1.033129 13
## [2] 0.01497242 1.240469 19
## [3] 0.06776990 1.138475 77
## [4] 0.06776990 1.081805 75
## [5] 0.15996848 1.165059 186
## [6] 0.26477541 1.218562 322
## [7] 0.26477541 1.059567 287
## [8] 0.29078014 1.075126 312
## [9] 0.29078014 1.072384 319
#inspect(association.rules[1:10])
Using the above output, you can make analysis such as:
Classes which have design smell ‘Cyclic Hierarchy’ will have the test smell ‘et1’ with support of 0.01 and confidence of 0.81.
Classes which have design smell ‘Multifaceted Abstraction’ will have the test smell ‘ar1’ with support of 0.0149 and confidence of 1.
Classes which have design smell ‘Feature Envy’ will have the test smell ‘et1’ with support of 0.06 and confidence of 0.89.
Classes which have design smell ‘Feature Envy’ will have the test smell ‘ar1’ with support of 0.059 and confidence of 0.87.
Since there will be hundreds or thousands of rules generated based on data, you need a couple of ways to visualize these association rules.
A straight-forward visualization of association rules is to use a scatter plot using plot() of the arulesViz package. It uses Support and Confidence on the axes. In addition, third measure Lift is used by default to color (grey levels) of the points.
# Filter rules with confidence greater than 0.4 or 40%
subRules<-association.rules[quality(association.rules)$confidence>0.4]
#Plot SubRules
plot(subRules)
The above plot shows that rules with high lift have low support. You can use the following options for the plot:
plot(subRules,method="two-key plot")
The two-key plot uses support and confidence on x and y-axis respectively. It uses order for coloring. The order is the number of items in the rule.
Graph-Based Visualizations
Graph-based techniques visualize association rules using vertices and edges where vertices are labeled with item names, and item sets or rules are represented as a second set of vertices. Items are connected with item-sets/rules using directed arrows. Arrows pointing from items to rule vertices indicate LHS items and an arrow from a rule to an item indicates the RHS. The size and color of vertices often represent interest measures.
Graph plots are a great way to visualize rules but tend to become congested as the number of rules increases. So it is better to visualize less number of rules with graph-based visualizations.
Let’s select 9 rules from subRules having the highest confidence.
top10subRules <- head(subRules, n = 9, by = "confidence")
Now, plot an interactive graph:
Note: You can make all your plots interactive using engine=htmlwidget parameter in plot
plot(top10subRules, method = "graph", engine = "htmlwidget")
This representation is also called as Parallel Coordinates Plot.
As mentioned above, the RHS is the Consequent; the positions are in the LHS where 2 is the most recent addition to our basket and 1 is the item we previously had.
# Filter top 9 rules with highest lift
subRules2<-head(subRules, n=9, by="lift")
plot(subRules2, method="paracoord")
It shows that when the class has ‘Multifaceted Abstraction’, with high probability It will also have ‘ar1’.
Next step is to run APRIORI algorithm with design-design smell:
# Min Support as 0.001, confidence as 0.8.
association.rules <- apriori(tr, parameter = list(supp=0.001, conf=0.8, minlen=2, maxlen=4), appearance = list(both=design_smells))
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.001 2
## maxlen target ext
## 4 rules TRUE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 1
##
## set item appearances ...[12 item(s)] done [0.00s].
## set transactions ...[12 item(s), 1269 transaction(s)] done [0.00s].
## sorting and recoding items ... [11 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4
## Warning in apriori(tr, parameter = list(supp = 0.001, conf = 0.8, minlen = 2, :
## Mining stopped (maxlen reached). Only patterns up to a length of 4 returned!
## done [0.00s].
## writing ... [7 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
The apriori will take tr as the transaction object on which mining is to be applied. parameter will allow you to set min_sup and min_confidence. The default values for parameter are minimum support of 0.1, the minimum confidence of 0.8, maximum of 4 items (maxlen), becouse with maxlen=2 there were 0 rules, minimum of 2 items (minlen). With appearance we specified the both parameter with the array of design_smell.
summary(association.rules)
## set of 7 rules
##
## rule length distribution (lhs + rhs):sizes
## 3 4
## 2 5
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 3.000 3.500 4.000 3.714 4.000 4.000
##
## summary of quality measures:
## support confidence coverage lift
## Min. :0.001576 Min. :0.8000 Min. :0.001576 Min. : 3.021
## 1st Qu.:0.001970 1st Qu.:1.0000 1st Qu.:0.001970 1st Qu.: 3.777
## Median :0.002364 Median :1.0000 Median :0.002364 Median : 3.822
## Mean :0.002477 Mean :0.9714 Mean :0.002589 Mean : 7.006
## 3rd Qu.:0.002758 3rd Qu.:1.0000 3rd Qu.:0.003152 3rd Qu.: 3.822
## Max. :0.003940 Max. :1.0000 Max. :0.003940 Max. :27.000
## count
## Min. :2.000
## 1st Qu.:2.500
## Median :3.000
## Mean :3.143
## 3rd Qu.:3.500
## Max. :5.000
##
## mining info:
## data ntransactions support confidence
## tr 1269 0.001 0.8
We obtained 7 rules that are showed here:
inspect(association.rules)
## lhs rhs support confidence coverage lift count
## [1] {Broken Modularization,
## Unnecessary Abstraction} => {Unutilized Abstraction} 0.003940110 1.0 0.003940110 3.822289 5
## [2] {Feature Envy,
## Unnecessary Abstraction} => {Unutilized Abstraction} 0.002364066 1.0 0.002364066 3.822289 3
## [3] {Broken Modularization,
## Deficient Encapsulation,
## Unnecessary Abstraction} => {Unutilized Abstraction} 0.002364066 1.0 0.002364066 3.822289 3
## [4] {Broken Modularization,
## Deficient Encapsulation,
## Unutilized Abstraction} => {Unnecessary Abstraction} 0.002364066 1.0 0.002364066 27.000000 3
## [5] {Cyclic Hierarchy,
## Cyclically-dependent Modularization,
## Deficient Encapsulation} => {Insufficient Modularization} 0.001576044 1.0 0.001576044 3.776786 2
## [6] {Cyclically-dependent Modularization,
## Deficient Encapsulation,
## Feature Envy} => {Insufficient Modularization} 0.003152088 0.8 0.003940110 3.021429 4
## [7] {Broken Hierarchy,
## Cyclically-dependent Modularization,
## Deficient Encapsulation} => {Insufficient Modularization} 0.001576044 1.0 0.001576044 3.776786 2
#inspect(association.rules[1:10])
Using the above output, you can make analysis such as:
Classes which have design smells ‘Broken Modularization’ and ‘Unnecessary Abstraction’ will have the design smell ‘Unutilized Abstraction’ with support of 0.0039 and confidence of 1.
Classes which have design smell ‘Feature Envy’ and ‘Unnecessary Abstraction’ will have the design smell ‘Unutilized Abstraction’ with support of 0.0023 and confidence of 1.
Since there will be hundreds or thousands of rules generated based on data, you need a couple of ways to visualize these association rules.
A straight-forward visualization of association rules is to use a scatter plot using plot() of the arulesViz package. It uses Support and Confidence on the axes. In addition, third measure Lift is used by default to color (grey levels) of the points.
# Filter rules with confidence greater than 0.4 or 40%
subRules<-association.rules[quality(association.rules)$confidence>0.4]
#Plot SubRules
plot(subRules)
## To reduce overplotting, jitter is added! Use jitter = 0 to prevent jitter.
The above plot shows that rules with high lift have low support. You can use the following options for the plot:
plot(subRules,method="two-key plot")
## To reduce overplotting, jitter is added! Use jitter = 0 to prevent jitter.
The two-key plot uses support and confidence on x and y-axis respectively. It uses order for coloring. The order is the number of items in the rule.
Graph-Based Visualizations
Graph-based techniques visualize association rules using vertices and edges where vertices are labeled with item names, and item sets or rules are represented as a second set of vertices. Items are connected with item-sets/rules using directed arrows. Arrows pointing from items to rule vertices indicate LHS items and an arrow from a rule to an item indicates the RHS. The size and color of vertices often represent interest measures.
Graph plots are a great way to visualize rules but tend to become congested as the number of rules increases. So it is better to visualize less number of rules with graph-based visualizations.
Let’s select 7 rules from subRules having the highest confidence.
top10subRules <- head(subRules, n = 7, by = "confidence")
Now, plot an interactive graph:
Note: You can make all your plots interactive using engine=htmlwidget parameter in plot
plot(top10subRules, method = "graph", engine = "htmlwidget")
This representation is also called as Parallel Coordinates Plot.
As mentioned above, the RHS is the Consequent; the positions are in the LHS where 2 is the most recent addition to our basket and 1 is the item we previously had.
# Filter top 7 rules with highest lift
subRules2<-head(subRules, n=7, by="lift")
plot(subRules2, method="paracoord")
It shows that when the class has ‘Broken Modularization’, ‘Deficient Encapsulation’, ‘Unutilized Abstraction’ with high probability It will also have ‘Unnecessary Abstraction’.
Next step is to run APRIORI algorithm with test-test smell:
# Min Support as 0.001, confidence as 0.8.
association.rules <- apriori(tr, parameter = list(supp=0.001, conf=0.8, minlen=2, maxlen=2), appearance = list(both=test_smells))
## Apriori
##
## Parameter specification:
## confidence minval smax arem aval originalSupport maxtime support minlen
## 0.8 0.1 1 none FALSE TRUE 5 0.001 2
## maxlen target ext
## 2 rules TRUE
##
## Algorithmic control:
## filter tree heap memopt load sort verbose
## 0.1 TRUE TRUE FALSE TRUE 2 TRUE
##
## Absolute minimum support count: 1
##
## set item appearances ...[7 item(s)] done [0.00s].
## set transactions ...[7 item(s), 1269 transaction(s)] done [0.00s].
## sorting and recoding items ... [7 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2
## Warning in apriori(tr, parameter = list(supp = 0.001, conf = 0.8, minlen = 2, :
## Mining stopped (maxlen reached). Only patterns up to a length of 2 returned!
## done [0.00s].
## writing ... [13 rule(s)] done [0.00s].
## creating S4 object ... done [0.00s].
The apriori will take tr as the transaction object on which mining is to be applied. parameter will allow you to set min_sup and min_confidence. The default values for parameter are minimum support of 0.1, the minimum confidence of 0.8, maximum of 2 items (maxlen), minimum of 2 items (minlen). With appearance we specified the both parameter with the array of test_smell.
summary(association.rules)
## set of 13 rules
##
## rule length distribution (lhs + rhs):sizes
## 2
## 13
##
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 2 2 2 2 2 2
##
## summary of quality measures:
## support confidence coverage lift
## Min. :0.01261 Min. :0.8000 Min. :0.01576 Min. :1.049
## 1st Qu.:0.07171 1st Qu.:0.8585 1st Qu.:0.08353 1st Qu.:1.095
## Median :0.08983 Median :0.8880 Median :0.09850 Median :1.116
## Mean :0.16973 Mean :0.8765 Mean :0.19840 Mean :1.760
## 3rd Qu.:0.15603 3rd Qu.:0.9000 3rd Qu.:0.18125 3rd Qu.:1.144
## Max. :0.66509 Max. :0.9185 Max. :0.80615 Max. :9.577
## count
## Min. : 16.0
## 1st Qu.: 91.0
## Median :114.0
## Mean :215.4
## 3rd Qu.:198.0
## Max. :844.0
##
## mining info:
## data ntransactions support confidence
## tr 1269 0.001 0.8
We filtered the first 10 rules that are showed here:
#inspect(association.rules)
inspect(association.rules[1:10])
## lhs rhs support confidence coverage lift count
## [1] {ro1} => {mg1} 0.01260835 0.8000000 0.01576044 9.577358 16
## [2] {ro1} => {et1} 0.01418440 0.9000000 0.01576044 1.144389 18
## [3] {ro1} => {ar1} 0.01418440 0.9000000 0.01576044 1.116422 18
## [4] {mg1} => {et1} 0.07407407 0.8867925 0.08353034 1.127595 94
## [5] {mg1} => {ar1} 0.07171001 0.8584906 0.08353034 1.064931 91
## [6] {it1} => {et1} 0.08983452 0.9120000 0.09850276 1.159647 114
## [7] {it1} => {ar1} 0.08747045 0.8880000 0.09850276 1.101537 111
## [8] {se1} => {et1} 0.09771474 0.9185185 0.10638298 1.167936 124
## [9] {se1} => {ar1} 0.09613869 0.9037037 0.10638298 1.121017 122
## [10] {gf1} => {et1} 0.15602837 0.8608696 0.18124507 1.094633 198
Using the above output, you can make analysis such as:
Classes which have test smell ‘ro1’ will have the test smell ‘mg1’ with support of 0.0126 and confidence of 0.8.
Classes which have test smell ‘ro1’ will have the test smell ‘et1’ with support of 0.0141 and confidence of 0.9.
Since there will be hundreds or thousands of rules generated based on data, you need a couple of ways to visualize these association rules.
A straight-forward visualization of association rules is to use a scatter plot using plot() of the arulesViz package. It uses Support and Confidence on the axes. In addition, third measure Lift is used by default to color (grey levels) of the points.
# Filter rules with confidence greater than 0.4 or 40%
subRules<-association.rules[quality(association.rules)$confidence>0.4]
#Plot SubRules
plot(subRules)
## To reduce overplotting, jitter is added! Use jitter = 0 to prevent jitter.
The above plot shows that rules with high lift have low support. You can use the following options for the plot:
plot(subRules,method="two-key plot")
## To reduce overplotting, jitter is added! Use jitter = 0 to prevent jitter.
The two-key plot uses support and confidence on x and y-axis respectively. It uses order for coloring. The order is the number of items in the rule.
Graph-Based Visualizations
Graph-based techniques visualize association rules using vertices and edges where vertices are labeled with item names, and item sets or rules are represented as a second set of vertices. Items are connected with item-sets/rules using directed arrows. Arrows pointing from items to rule vertices indicate LHS items and an arrow from a rule to an item indicates the RHS. The size and color of vertices often represent interest measures.
Graph plots are a great way to visualize rules but tend to become congested as the number of rules increases. So it is better to visualize less number of rules with graph-based visualizations.
Let’s select 10 rules from subRules having the highest confidence.
top10subRules <- head(subRules, n = 10, by = "confidence")
Now, plot an interactive graph:
Note: You can make all your plots interactive using engine=htmlwidget parameter in plot
plot(top10subRules, method = "graph", engine = "htmlwidget")
This representation is also called as Parallel Coordinates Plot.
As mentioned above, the RHS is the Consequent; the positions are in the LHS where 2 is the most recent addition to our basket and 1 is the item we previously had.
# Filter top 20 rules with highest lift
subRules2<-head(subRules, n=20, by="lift")
plot(subRules2, method="paracoord")
It shows that when the class has ‘ro1’, with high probability It will also have ‘mg1’.